diff options
author | makefu <github@syntax-fehler.de> | 2018-09-08 12:45:47 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2018-09-08 12:45:47 +0200 |
commit | 35cc31d3e478951e1c72126fc43c4209ebf70e00 (patch) | |
tree | af7f631180be2f93d9d2b5ee551fac3a3975589e /makefu/2configs | |
parent | 964ab6ccebb18838148300a4d6641f832f3717e7 (diff) |
ma 2/default: vim.nix resides in editor
Diffstat (limited to 'makefu/2configs')
-rw-r--r-- | makefu/2configs/default.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/makefu/2configs/default.nix b/makefu/2configs/default.nix index 0a89d2023..6192a92a5 100644 --- a/makefu/2configs/default.nix +++ b/makefu/2configs/default.nix @@ -8,13 +8,16 @@ with import <stockholm/lib>; mapAttrs (_: h: { hashedPassword = h; }) (import <secrets/hashedPasswords.nix>); } - ./vim.nix + ./editor/vim.nix ./binary-cache/nixos.nix ]; boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest; programs.command-not-found.enable = false; + + nix.package = pkgs.nixUnstable; + nixpkgs.config.allowUnfreePredicate = (pkg: pkgs.lib.hasPrefix "unrar-" pkg.name); krebs = { enable = true; @@ -158,4 +161,10 @@ with import <stockholm/lib>; "-a task,never" ]; }; + system.activationScripts.state = optionalString (config.state != []) '' + cat << EOF + This machine is burdened with state: + ${concatMapStringsSep "\n" (d: "* ${d}") config.state} + EOF + ''; } |