flakes/hosts/winter/default.nix

24 lines
334 B
Nix
Raw Normal View History

{ config, modules, overlays, pkgs, ... }: {
2021-05-11 14:32:58 +07:00
networking.hostName = "winter";
system.stateVersion = "20.09";
imports = with modules.system; [
audio
base
gui
2021-07-15 19:07:57 +07:00
input
kernel
2021-07-15 20:26:09 +07:00
nix
packages
security
snapper
./filesystem.nix
./kernel.nix
./networking.nix
../../users/rin.nix
2021-05-11 14:32:58 +07:00
];
}