diff options
author | EuAndreh <eu@euandre.org> | 2018-11-21 10:08:30 -0200 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-11-21 10:08:30 -0200 |
commit | 2d3f9a88fa97e246fbf20b4a4eca1a5cd5e323d0 (patch) | |
tree | 96fcf0cf5d0af2cb38420aef027f525e48b60071 /nixos/configuration.nix | |
parent | Add ledger package. (diff) | |
download | dotfiles-2d3f9a88fa97e246fbf20b4a4eca1a5cd5e323d0.tar.gz dotfiles-2d3f9a88fa97e246fbf20b4a4eca1a5cd5e323d0.tar.xz |
wip
Diffstat (limited to 'nixos/configuration.nix')
-rw-r--r-- | nixos/configuration.nix | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 7162070..a5a7646 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -11,13 +11,13 @@ loader = { systemd-boot.enable = true; efi.canTouchEfiVariables = true; - grub.device = "/dev/sda"; + grub.device = "/dev/nvme0n1"; }; initrd = { luks.devices = [ { name = "root"; - device = "/dev/sda2"; + device = "/dev/nvme0n1p3"; preLVM = true; } ]; @@ -41,7 +41,7 @@ nix.gc = { automatic = true; - dates = "03:15"; + dates = "03:15"; # change to hour? }; # Select internationalisation properties. @@ -127,7 +127,7 @@ bfg-repo-cleaner pwgen gksu # =gksudo= - gnome3.gconf # https://github.com/NixOS/nixpkgs/issues/15978 + gnome2.GConf # https://github.com/NixOS/nixpkgs/issues/15978 lsof pciutils python27Packages.pywatchman # =watchman-wait= @@ -186,7 +186,7 @@ pypi2nix bundix - nix-repl + # nix-repl ## Music @@ -245,7 +245,7 @@ qemu thunderbird calibre - quodlibet + # quodlibet rhythmbox gpodder firefox @@ -406,19 +406,19 @@ services = { # Derived from Guix guix-daemon.service.in # https://git.savannah.gnu.org/cgit/guix.git/tree/etc/guix-daemon.service.in?id=00c86a888488b16ce30634d3a3a9d871ed6734a2 - guix-daemon = { - enable = true; - description = "Build daemon for GNU Guix"; - serviceConfig = { - ExecStart = "/var/guix/profiles/per-user/root/guix-profile/bin/guix-daemon --build-users-group=guixbuild"; - Environment="GUIX_LOCPATH=/root/.guix-profile/lib/locale"; - RemainAfterExit="yes"; - StandardOutput="syslog"; - StandardError="syslog"; - TaskMax= "8192"; - }; - wantedBy = [ "multi-user.target" ]; - }; +# guix-daemon = { +# enable = true; +# description = "Build daemon for GNU Guix"; +# serviceConfig = { +# ExecStart = "/var/guix/profiles/per-user/root/guix-profile/bin/guix-daemon --build-users-group=guixbuild"; +# Environment="GUIX_LOCPATH=/root/.guix-profile/lib/locale"; +# RemainAfterExit="yes"; +# StandardOutput="syslog"; +# StandardError="syslog"; +# TaskMax= "8192"; +# }; +# wantedBy = [ "multi-user.target" ]; +# }; }; }; @@ -426,5 +426,5 @@ # compatible, in order to avoid breaking some software such as database # servers. You should change this only after NixOS release notes say you # should. - system.stateVersion = "18.03"; # Did you read the comment? + system.stateVersion = "18.09"; # Did you read the comment? } |