diff options
author | EuAndreh <eu@euandre.org> | 2019-05-20 21:44:08 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-05-20 21:44:08 -0300 |
commit | 7813fc74d83e6da0838ffe0f44187443dd343928 (patch) | |
tree | a0b1dd43e7aa8de199eec83eef9fc6debb2e1b6a | |
parent | Move emacs/not-much.el -> mail/not-much.el (diff) | |
download | dotfiles-7813fc74d83e6da0838ffe0f44187443dd343928.tar.gz dotfiles-7813fc74d83e6da0838ffe0f44187443dd343928.tar.xz |
Remove ./configuration.nix
-rw-r--r-- | configuration.nix | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/configuration.nix b/configuration.nix deleted file mode 100644 index 0756d89..0000000 --- a/configuration.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ config, pkgs, ... }: - -{ - imports = - [ # Include the results of the hardware scan. - ./hardware-configuration.nix - ]; - - # Use the systemd-boot EFI boot loader. - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; - boot.initrd.luks.devices = [ - { - name = "root"; - device = "/dev/sda3"; - preLVM = true; - } - ]; - - environment.systemPackages = with pkgs; [ - wget vim - ]; - - services = { - xserver = { - enable = true; - windowManager.default = "xmonad"; - windowManager.xmonad = { - enable = true; - enableContribAndExtras = true; - }; - desktopManager = { - default = "none"; - xterm.enable = false; - gnome3.enable = true; - }; - displayManager = { - lightdm.enable = true; - }; - }; - }; - - system.stateVersion = "19.03"; # Did you read the comment? -} |