summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--accounts/gkleen@sif/default.nix6
-rw-r--r--accounts/gkleen@sif/libvirt/default.nix1
-rw-r--r--user-profiles/zsh/default.nix4
3 files changed, 5 insertions, 6 deletions
diff --git a/accounts/gkleen@sif/default.nix b/accounts/gkleen@sif/default.nix
index 09080001..cde96052 100644
--- a/accounts/gkleen@sif/default.nix
+++ b/accounts/gkleen@sif/default.nix
@@ -68,6 +68,10 @@ in {
68 ]; 68 ];
69 69
70 config = { 70 config = {
71 nixpkgs.externalConfig.allowUnfreePackages = [
72 "graphite"
73 ];
74
71 home-manager.users.${userName} = { 75 home-manager.users.${userName} = {
72 imports = [ 76 imports = [
73 ./libvirt 77 ./libvirt
@@ -511,7 +515,7 @@ in {
511 nerd-fonts.fira-mono 515 nerd-fonts.fira-mono
512 nerd-fonts.symbols-only nerd-fonts.fira-code powerline-fonts 516 nerd-fonts.symbols-only nerd-fonts.fira-code powerline-fonts
513 swtpm (hunspell.withDicts (dicts: with dicts; [en_GB-large de_DE])) 517 swtpm (hunspell.withDicts (dicts: with dicts; [en_GB-large de_DE]))
514 libation libqalculate 518 libation libqalculate graphite
515 ] ++ mapAttrsToList (_name: pkg: pkgs.callPackage pkg { inherit sources flake flakeInputs; }) (customUtils.nixImport { dir = ./utils; }); 519 ] ++ mapAttrsToList (_name: pkg: pkgs.callPackage pkg { inherit sources flake flakeInputs; }) (customUtils.nixImport { dir = ./utils; });
516 520
517 file = { 521 file = {
diff --git a/accounts/gkleen@sif/libvirt/default.nix b/accounts/gkleen@sif/libvirt/default.nix
index 7d0972b5..fb2da5fc 100644
--- a/accounts/gkleen@sif/libvirt/default.nix
+++ b/accounts/gkleen@sif/libvirt/default.nix
@@ -17,7 +17,6 @@ with flakeInputs.nixVirt.lib;
17 memory = { count = 16; unit = "GiB"; }; 17 memory = { count = 16; unit = "GiB"; };
18 storage_vol = "/home/gkleen/.local/share/libvirt/images/lmmirzm-vmrz01.qcow2"; 18 storage_vol = "/home/gkleen/.local/share/libvirt/images/lmmirzm-vmrz01.qcow2";
19 nvram_path = "/home/gkleen/.local/share/libvirt/lmmirzm-vmrz01.nvram"; 19 nvram_path = "/home/gkleen/.local/share/libvirt/lmmirzm-vmrz01.nvram";
20 virtio_drive = true;
21 virtio_video = true; 20 virtio_video = true;
22 install_virtio = false; 21 install_virtio = false;
23 }) { 22 }) {
diff --git a/user-profiles/zsh/default.nix b/user-profiles/zsh/default.nix
index eb9f7aa9..87d0fa4b 100644
--- a/user-profiles/zsh/default.nix
+++ b/user-profiles/zsh/default.nix
@@ -68,9 +68,5 @@
68 programs.zsh.enable = true; 68 programs.zsh.enable = true;
69 environment.pathsToLink = [ "/share/zsh" ]; 69 environment.pathsToLink = [ "/share/zsh" ];
70 environment.shellAliases = lib.mkOverride 90 {}; 70 environment.shellAliases = lib.mkOverride 90 {};
71
72 nixpkgs.externalConfig.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
73 "zsh-abbr"
74 ];
75 }; 71 };
76} 72}