Formatting
This commit is contained in:
parent
55921810ee
commit
b4818d741c
1 changed files with 7 additions and 6 deletions
11
nixos.nix
11
nixos.nix
|
@ -2,11 +2,12 @@ inputs @ { self, ... }:
|
||||||
let
|
let
|
||||||
daniel = system: {
|
daniel = system: {
|
||||||
home-manager.users.daniel = {
|
home-manager.users.daniel = {
|
||||||
nixpkgs.overlays = [ (final: prev: {
|
nixpkgs.overlays = [
|
||||||
helix = prev.helix // inputs.helix.packages.${system}.helix;
|
(final: prev: {
|
||||||
rtx = prev.rtx // inputs.rtx.packages.${system}.rtx;
|
helix = prev.helix // inputs.helix.packages.${system}.helix;
|
||||||
})
|
rtx = prev.rtx // inputs.rtx.packages.${system}.rtx;
|
||||||
];
|
})
|
||||||
|
];
|
||||||
imports = [ ./home/user.nix ./home/linux.nix ];
|
imports = [ ./home/user.nix ./home/linux.nix ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue