blob: 39687a235c110ae940418306e5316bf3ca98f308 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
config,
modulesPath,
pkgs,
...
}: {
imports = [
(modulesPath + "/profiles/base.nix")
../common
../common/desktop/gnome.nix
../common/hardware/nvidia.nix
./boot.nix
./network.nix
./packages.nix
../../users/seth
];
system.gui-stuff = true;
# enable non-free packages
nixpkgs.config.allowUnfree = true;
# Enable nix flakes
nix.package = pkgs.nixFlakes;
nix.settings.experimental-features = ["nix-command" "flakes"];
system.stateVersion = "23.05";
}
|