2024-05-30 21:20:39 +01:00
|
|
|
{ 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;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-05-30 21:23:59 +01:00
|
|
|
environment.persistence."/persist" = {
|
|
|
|
hideMounts = true;
|
2024-05-30 22:02:21 +01:00
|
|
|
users.sam= {
|
2024-05-30 21:23:59 +01:00
|
|
|
directories = [
|
|
|
|
"Sync"
|
|
|
|
"Keep"
|
|
|
|
".ssh"
|
|
|
|
".mozilla"
|
|
|
|
".local"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-05-30 21:20:39 +01:00
|
|
|
networking = {
|
|
|
|
hostName = "semita";
|
|
|
|
networkmanager.enable = true;
|
|
|
|
enableIPv6 = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
services.libinput.enable = true;
|
|
|
|
}
|