[NixOS] Add neovim for micah

This commit is contained in:
Ivan Malison 2023-12-21 16:01:34 -07:00
parent 6f1242b02c
commit a98b45590a
5 changed files with 13 additions and 5 deletions

View File

@ -28,6 +28,7 @@
./ssh.nix
./syncthing.nix
./users.nix
./user-specific.nix
./vscode.nix
./wsl.nix
./xmonad.nix

View File

@ -1,6 +1,6 @@
#!/usr/bin/env sh
nix flake lock --update-input taffybar
nix flake lock --update-input imalison-taffybar
nix flake lock --update-input xmonad
nix flake lock --update-input xmonad-contrib
# nix flake lock --update-input taffybar
# nix flake lock --update-input xmonad
# nix flake lock --update-input xmonad-contrib

View File

@ -693,7 +693,7 @@
},
"locked": {
"lastModified": 1,
"narHash": "sha256-rua03PcdrDhQoRjqAVHqUHfTUazlK0L1Pw8iIMM+YDA=",
"narHash": "sha256-9mlpz8H063Vu4YJ7Ioj3BRDeeGpX3CBz7xSw3HmAnKc=",
"path": "../dotfiles/config/taffybar",
"type": "path"
},

View File

@ -152,7 +152,7 @@
inherit inputs machineNames;
makeEnable = (import ./make-enable.nix) nixpkgs.lib;
mapValueToKeys = keys: value: builtins.listToAttrs (map (name: { inherit name value; }) keys);
realUsers = [ "root" "imalison" "kat" "dean" "alex" "will" "mike" ];
realUsers = [ "root" "imalison" "kat" "dean" "alex" "will" "mike" "micah" ];
forEachUser = mapValueToKeys realUsers;
keys = (import ./keys.nix);
} // specialArgs;

7
nixos/user-specific.nix Normal file
View File

@ -0,0 +1,7 @@
{
home-manager.users.micah = {pkgs, ...}: {
home.packages = [
pkgs.neovim
];
};
}