46 lines
1.4 KiB
Nix
46 lines
1.4 KiB
Nix
#
|
|
# Specific system configuration settings for desktop
|
|
#
|
|
# flake.nix
|
|
# ├─ ./hosts
|
|
# │ └─ ./laptop
|
|
# │ ├─ default.nix *
|
|
# │ └─ hardware-configuration.nix
|
|
# └─ ./modules
|
|
# ├─ ./desktop
|
|
# │ └─ ./hyprland
|
|
# │ └─ hyprland.nix
|
|
# ├─ ./modules
|
|
# │ └─ ./programs
|
|
# │ └─ waybar.nix
|
|
# └─ ./hardware
|
|
# └─ default.nix
|
|
#
|
|
|
|
{ config, pkgs, user, agenix, impermanence, ... }:
|
|
|
|
{
|
|
imports = # For now, if applying to other system, swap files
|
|
[(import ./hardware-configuration.nix)] ++ # Current system hardware config @ /etc/nixos/hardware-configuration.nix
|
|
[(import ../../modules/wm/virtualisation/docker.nix)] ++ # Docker
|
|
[(import ../../modules/wm/virtualisation/kvm-amd.nix)] ++ # Docker
|
|
(import ../../modules/services/kabtopci); # Server Services
|
|
|
|
boot = { # Boot options
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
loader = { # EFI Boot
|
|
grub = {
|
|
enable = true;
|
|
device = "/dev/vda";
|
|
};
|
|
timeout = 1; # Grub auto select time
|
|
};
|
|
};
|
|
|
|
programs = { # No xbacklight, this is the alterantive
|
|
zsh.enable = true;
|
|
};
|
|
|
|
}
|