refactor: move host-specific modules to hosts/
This commit is contained in:
parent
d859e671f9
commit
de6d9a42b2
5 changed files with 6 additions and 5 deletions
23
hosts/winter/default.nix
Normal file
23
hosts/winter/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ config, modules, overlays, pkgs, ... }: {
|
||||
networking.hostName = "winter";
|
||||
system.stateVersion = "20.09";
|
||||
|
||||
imports = with modules.system; [
|
||||
audio
|
||||
base
|
||||
gui
|
||||
input
|
||||
kernel
|
||||
nix
|
||||
packages
|
||||
security
|
||||
snapper
|
||||
|
||||
./filesystem.nix
|
||||
./kernel.nix
|
||||
./networking.nix
|
||||
|
||||
../../users/rin.nix
|
||||
];
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue