almost a working setup with HM and nixos

This commit is contained in:
Chris Cochrun 2022-05-06 16:35:36 -05:00
parent c6aa36ec2a
commit 9f2249219b
3 changed files with 27 additions and 9 deletions

View file

@ -14,7 +14,6 @@
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "20.09";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
@ -110,39 +109,39 @@
};
home.file.".config/rofi" = {
source = ./rofi;
source = ../rofi;
recursive = true;
};
programs.rbw.enable = true;
home.file.".config/rbw" = {
source = ./rbw;
source = ../rbw;
recursive = true;
};
home.file.".config/fish" = {
source = ./fish;
source = ../fish;
recursive = true;
};
programs.qutebrowser.enable = true;
home.file.".config/qutebrowser" = {
source = ./qutebrowser;
source = ../qutebrowser;
recursive = true;
};
home.file.".config/mpv" = {
source = ./mpv;
source = ../mpv;
recursive = true;
};
home.file.".config/macchina" = {
source = ./macchina;
source = ../macchina;
recursive = true;
};
home.file."scripts" = {
source = ./scripts;
source = ../scripts;
recursive = true;
};