Files
nixos/hosts/minoxy-workstation/configuration.nix

39 lines
803 B
Nix

{ pkgs, config, inputs, ... }:
{
imports = [
./hardware-configuration.nix
./../../user/users.nix
./../../modules/common.nix
./../../modules/hardware/xremap.nix
./../../modules/services/webdav.nix
#./../../modules/hardware/nvidia.nix
inputs.sops-nix.nixosModules.sops
];
networking.hostName = "minoxy";
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
services.xserver.displayManager.gdm.enable = true; # We are pre 25.11
systemd.targets.sleep.enable = true;
systemd.targets.suspend.enable = true;
virtualisation.docker.enable = true;
virtualisation.docker.storageDriver = "btrfs";
programs = {
hyprland.enable = true;
hyprlock.enable = true;
firefox.enable = true;
};
# Never change this!
system.stateVersion = "25.05";
}