Restructure to allow for modularity and add home-manager with tmux and git
This commit is contained in:
parent
eff6860aa2
commit
59842a4ba4
9 changed files with 110 additions and 11 deletions
|
@ -3,16 +3,18 @@
|
|||
|
||||
inputs = {
|
||||
impermanence.url = "github:nix-community/impermanence";
|
||||
home-manager.url = "github:nix-community/home-manager";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, impermanence, ... }:
|
||||
outputs = { self, nixpkgs, impermanence, home-manager, ... }:
|
||||
{
|
||||
nixosConfigurations.workstation = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
impermanence.nixosModules.impermanence
|
||||
home-manager.nixosModules.home-manager
|
||||
./machines/workstation.nix
|
||||
./users/hu.nix
|
||||
./users/hu/user.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue