Files
nixos/hosts/marauder/default.nix
2024-07-11 19:42:29 -07:00

26 lines
447 B
Nix

{ config, lib, pkgs, inputs, ... }:
{
imports = [
./apps.nix
./backup.nix
./boot.nix
./hardware.nix
];
nixpkgs.config.allowUnfree = true;
services = {
xserver = {
enable = true;
desktopManager = {
cinnamon.enable = true;
xterm.enable = false;
};
};
displayManager.defaultSession = "cinnamon";
};
time.timeZone = "America/Los_Angeles";
system.stateVersion = "24.05";
}