Initial commit.

This commit is contained in:
kat witch 2020-11-01 20:04:42 +00:00 committed by kat
commit 25be5d58d9
26 changed files with 931 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../../common
../../desktop
];
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";
}