mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
added nix-less home-manager config
This commit is contained in:
parent
c98d27b406
commit
f28ec054cd
5 changed files with 162 additions and 1 deletions
12
flake.nix
12
flake.nix
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
||||
home-manager= {
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/release-23.11";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
|
@ -22,6 +22,7 @@
|
|||
allowUnfree = true;
|
||||
};
|
||||
};
|
||||
config = import ./user.config.nix;
|
||||
|
||||
in
|
||||
{
|
||||
|
|
@ -55,5 +56,14 @@
|
|||
];
|
||||
};
|
||||
};
|
||||
|
||||
homeConfigurations = {
|
||||
${config.user.name} = home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
modules = [
|
||||
./src/system/machines/nix-less
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue