Update dependencies
This commit is contained in:
parent
a71ce8b2ef
commit
1d446b58d1
2 changed files with 25 additions and 23 deletions
30
flake.nix
30
flake.nix
|
@ -18,20 +18,22 @@
|
|||
patches = [ ];
|
||||
};
|
||||
sharedOverlays = [ emacs-overlay.overlay ];
|
||||
sharedModules = [
|
||||
({ lib, ... }: {
|
||||
environment.etc = lib.mapAttrs' (key: val: { name = "channels/${key}"; value = { source = val.outPath; }; }) inputs;
|
||||
nix.nixPath = [ "/etc/channels" ];
|
||||
})
|
||||
utils.nixosModules.saneFlakeDefaults
|
||||
home-manager.nixosModules.home-manager
|
||||
./modules
|
||||
];
|
||||
nixosProfiles = {
|
||||
kharbranth = { modules = [ ./machines/kharbranth ]; };
|
||||
kholinar = { modules = [ ./machines/kholinar ]; };
|
||||
lasting-integrity = { modules = [ ./machines/lasting-integrity ]; };
|
||||
urithiru = { modules = [ ./machines/urithiru ]; };
|
||||
hostDefaults = {
|
||||
modules = [
|
||||
({ lib, ... }: {
|
||||
environment.etc = lib.mapAttrs' (key: val: { name = "channels/${key}"; value = { source = val.outPath; }; }) inputs;
|
||||
nix.nixPath = [ "/etc/channels" ];
|
||||
})
|
||||
utils.nixosModules.saneFlakeDefaults
|
||||
home-manager.nixosModules.home-manager
|
||||
./modules
|
||||
];
|
||||
};
|
||||
hosts = {
|
||||
kharbranth.modules = [ ./machines/kharbranth ];
|
||||
kholinar.modules = [ ./machines/kholinar ];
|
||||
lasting-integrity.modules = [ ./machines/lasting-integrity ];
|
||||
urithiru.modules = [ ./machines/urithiru ];
|
||||
};
|
||||
devShellBuilder = channels:
|
||||
let pkgs = channels.nixpkgs; in pkgs.mkShell { buildInputs = [ pkgs.nixpkgs-fmt ]; };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue