mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-07 07:09:15 +00:00
nix: refactor configuration into named
This commit is contained in:
parent
c41c9d9822
commit
c04a3b8d2d
4 changed files with 21 additions and 30 deletions
|
|
@ -27,5 +27,11 @@ in
|
|||
pkgs.colima
|
||||
];
|
||||
|
||||
programs.neovim.extraPackages = [ pkgs.fish-lsp ];
|
||||
programs = {
|
||||
neovim.extraPackages = [ pkgs.fish-lsp ];
|
||||
|
||||
git.signing.signByDefault = true;
|
||||
cmus.enable = true;
|
||||
password-store.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,4 +19,6 @@ in
|
|||
|
||||
# it gets turned off so I need to run it more frequently
|
||||
nix.gc.frequency = lib.mkForce "3 hours";
|
||||
|
||||
programs.password-store.enable = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1,4 @@
|
|||
{ imports = [ ./fonts.nix ]; }
|
||||
{
|
||||
imports = [ ./fonts.nix ];
|
||||
programs.cmus.enable = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue