26 lines
447 B
Nix
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";
|
|
}
|