nix: move sway configs to diana

This commit is contained in:
Roman Godmaire 2024-04-13 22:25:39 -04:00
parent 81632fb8d4
commit a0831f6336
2 changed files with 13 additions and 12 deletions

View file

@ -37,15 +37,7 @@
home.file = { home.file = {
".config/doom".source = ../doom; ".config/doom".source = ../doom;
".config/i3status-rust".source = ../i3status-rust; ".config/nvim".source = ../nvim;
".config/nvim/".source = ../nvim;
".config/rofi/".source = ../rofi;
".config/sway/".source = ../sway;
".config/swaylock/config".text = ''
image=/var/home/digyx/Pictures/ina_bday_2021_4k.png
scaling=fill
'';
}; };
# You can also manage environment variables but you will have to manually # You can also manage environment variables but you will have to manually

View file

@ -6,9 +6,18 @@
home.username = "digyx"; home.username = "digyx";
home.homeDirectory = "/var/home/digyx"; home.homeDirectory = "/var/home/digyx";
home.packages = with pkgs; [ home.file = {
i3status-rust ".config/i3status-rust".source = ../i3status-rust;
]; ".config/rofi".source = ../rofi;
".config/sway".source = ../sway;
".config/swaylock/config".text = ''
image=/var/home/digyx/Pictures/ina_bday_2021_4k.png
scaling=fill
'';
};
home.packages = with pkgs; [ i3status-rust ];
# Services # Services
services.syncthing.enable = true; services.syncthing.enable = true;