Reorganize modules

Leverage nixos-hardware
This commit is contained in:
Nettika 2024-07-11 21:03:02 -07:00
parent 13cb1c6223
commit a646cbb078
10 changed files with 92 additions and 97 deletions

View file

@ -1,25 +0,0 @@
{ 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";
}