feat: cache devShells by default
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
42d8107399
commit
b94a738734
2 changed files with 9 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
nix-melt,
|
||||
nurl,
|
||||
pkgs,
|
||||
self,
|
||||
...
|
||||
} @ inputs: {
|
||||
imports = [
|
||||
|
@ -75,6 +76,8 @@
|
|||
};
|
||||
|
||||
home-manager = let
|
||||
inherit (lib) mapAttrs' nameValuePair;
|
||||
|
||||
inherit (config.vars) mainUser;
|
||||
mainUserConf = config.home-manager.users.${mainUser};
|
||||
|
||||
|
@ -99,6 +102,11 @@
|
|||
./home/trash-d
|
||||
];
|
||||
|
||||
# Cache devShells
|
||||
home.file = mapAttrs' (n: v: nameValuePair ".cache/devShells/${n}" {
|
||||
source = v;
|
||||
}) self.devShells.${pkgs.system};
|
||||
|
||||
home.packages = [
|
||||
nix-melt.packages.${pkgs.system}.default
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ in {
|
|||
kb_layout = xkb.layout;
|
||||
kb_variant = xkb.variant;
|
||||
numlock_by_default = true;
|
||||
repeat_rate = 50;
|
||||
repeat_rate = 25;
|
||||
|
||||
# Mouse
|
||||
follow_mouse = true;
|
||||
|
|
Loading…
Reference in a new issue