nixos/hosts/sparky/default.nix

60 lines
1.2 KiB
Nix
Raw Normal View History

2024-05-16 11:55:24 +01:00
{ inputs, config, lib, pkgs, outputs,... }:
2024-05-22 21:10:41 +01:00
let
2024-05-25 18:34:37 +01:00
dev = "/dev/vda";
in
2024-05-16 11:55:24 +01:00
{
imports =
[
2024-05-16 20:19:01 +01:00
# Disk configuration
2024-05-17 20:17:53 +01:00
inputs.disko.nixosModules.disko
2024-05-25 18:44:35 +01:00
(import ../common/disks/std-disk-config.nix { device = dev; })
../common/optional/btrfs-impermanence.nix
2024-05-16 20:19:01 +01:00
2024-05-23 00:10:58 +01:00
# Create users for this host
../common/users/media
2024-05-16 11:55:24 +01:00
# Import core options
./hardware-configuration.nix
../common/core
# Import optional options
../common/optional/openssh.nix
2024-05-25 20:48:50 +01:00
../common/optional/persistence.nix
2024-05-16 11:55:24 +01:00
];
2024-05-16 20:19:01 +01:00
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
timeout = 3;
};
};
2024-05-25 20:48:50 +01:00
environment.persistence."/persist" = {
hideMounts = true;
directories = [
"/var/lib/flatpak"
];
};
2024-05-16 20:19:01 +01:00
networking = {
2024-05-17 20:17:53 +01:00
hostName = "sparky";
2024-05-16 20:19:01 +01:00
networkmanager.enable = true;
enableIPv6 = false;
};
2024-05-23 19:41:54 +01:00
services.libinput.enable = true;
services.displayManager.defaultSession = "cinnamon";
2024-05-24 14:32:18 +01:00
services.xserver = {
enable = true;
displayManager.lightdm.enable = true;
desktopManager = {
cinnamon.enable = true;
};
};
2024-05-16 20:19:01 +01:00
system.stateVersion = "23.11";
}