52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
|
{ inputs, config, lib, pkgs, outputs,... }:
|
||
|
let
|
||
|
# Disko setup
|
||
|
fsType = "btrfs"; # one of ext4 or btrfs. Use btrfs if using impermanence
|
||
|
dev = "/dev/vda"; # depends on target hardware
|
||
|
encrypted = true; # currrently only applies to btrfs
|
||
|
btrfsMountDevice = if encrypted then "/dev/mapper/crypted" else "/dev/root_vg/root";
|
||
|
in
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
# Create users for this host
|
||
|
../common/users/sam
|
||
|
|
||
|
# Disk configuration
|
||
|
inputs.disko.nixosModules.disko
|
||
|
(import ../common/disks { device = dev; fsType = fsType; encrypted = encrypted; })
|
||
|
|
||
|
# Impermanence
|
||
|
inputs.impermanence.nixosModules.impermanence
|
||
|
(import ../common/disks/btrfs-impermanence.nix { btrfsMountDevice = btrfsMountDevice; lib = lib; })
|
||
|
|
||
|
# Import core options
|
||
|
./hardware-configuration.nix
|
||
|
../common/core
|
||
|
|
||
|
# Import optional options
|
||
|
../common/optional/persistence.nix
|
||
|
../common/optional/pipewire.nix
|
||
|
../common/optional/hyprland.nix
|
||
|
../common/optional/displayManager/sddm.nix
|
||
|
../common/optional/openssh.nix
|
||
|
|
||
|
];
|
||
|
|
||
|
boot = {
|
||
|
loader = {
|
||
|
systemd-boot.enable = true;
|
||
|
efi.canTouchEfiVariables = true;
|
||
|
timeout = 3;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
networking = {
|
||
|
hostName = "semita";
|
||
|
networkmanager.enable = true;
|
||
|
enableIPv6 = false;
|
||
|
};
|
||
|
|
||
|
services.libinput.enable = true;
|
||
|
}
|