Move home-manager related files into home directory
This commit is contained in:
parent
56a100f0c6
commit
8f68ada082
|
@ -98,7 +98,7 @@
|
||||||
stateVersion = "22.05";
|
stateVersion = "22.05";
|
||||||
configuration = {
|
configuration = {
|
||||||
imports = [
|
imports = [
|
||||||
./home.nix
|
./home/home.nix
|
||||||
./modules
|
./modules
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ in {
|
||||||
./programs/tmux.nix
|
./programs/tmux.nix
|
||||||
./programs/zsh
|
./programs/zsh
|
||||||
|
|
||||||
./modules
|
../modules
|
||||||
|
|
||||||
inputs.secrets.outputs.nixosModule
|
inputs.secrets.outputs.nixosModule
|
||||||
] ++ optionals graphics [
|
] ++ optionals graphics [
|
||||||
|
@ -38,6 +38,7 @@ in {
|
||||||
./services/dunst.nix
|
./services/dunst.nix
|
||||||
./services/mpd.nix
|
./services/mpd.nix
|
||||||
./services/picom.nix
|
./services/picom.nix
|
||||||
|
./services/polybar.nix
|
||||||
./services/stalonetray.nix
|
./services/stalonetray.nix
|
||||||
./services/sxhkd.nix
|
./services/sxhkd.nix
|
||||||
];
|
];
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
@ -8,10 +8,6 @@
|
||||||
"super + Escape" = "pkill -USR1 -x sxhkd && ${pkgs.libnotify}/bin/notify-send -t 3000 \"sxhkd configuration reloaded\"";
|
"super + Escape" = "pkill -USR1 -x sxhkd && ${pkgs.libnotify}/bin/notify-send -t 3000 \"sxhkd configuration reloaded\"";
|
||||||
|
|
||||||
# Applications
|
# Applications
|
||||||
"super + w" = "${pkgs.emacs}/bin/emacs";
|
|
||||||
|
|
||||||
"super + e" = "$FILEBROWSER";
|
|
||||||
|
|
||||||
"super + s" = "$BROWSER";
|
"super + s" = "$BROWSER";
|
||||||
|
|
||||||
"super + r" = "${pkgs.rofi}/bin/rofi -show drun";
|
"super + r" = "${pkgs.rofi}/bin/rofi -show drun";
|
|
@ -203,7 +203,7 @@ in {
|
||||||
extraSpecialArgs = { inherit inputs; inherit secrets; };
|
extraSpecialArgs = { inherit inputs; inherit secrets; };
|
||||||
|
|
||||||
# TODO: figure out why specialArgs isn't accessible from the root home file.
|
# TODO: figure out why specialArgs isn't accessible from the root home file.
|
||||||
users.h7x4 = import ../home.nix {
|
users.h7x4 = import ../home/home.nix {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
inherit config;
|
inherit config;
|
||||||
|
|
Loading…
Reference in New Issue