mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
32 lines
591 B
Nix
32 lines
591 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
../../profiles/common
|
|
../../profiles/desktop
|
|
../../profiles/gnome
|
|
../../profiles/gaming
|
|
../../profiles/development
|
|
];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
home-manager.users.kat = {
|
|
imports = [
|
|
./dconf.nix
|
|
];
|
|
};
|
|
|
|
networking.hostName = "samhain";
|
|
networking.hostId = "617050fc";
|
|
|
|
networking.useDHCP = false;
|
|
networking.interfaces.enp34s0.useDHCP = true;
|
|
|
|
system.stateVersion = "20.09";
|
|
|
|
}
|
|
|