Reorganize configs

This commit is contained in:
Nettika 2024-07-11 12:21:43 -07:00
parent f23f4f7746
commit f7872964ec
19 changed files with 98 additions and 94 deletions

View file

@ -1,6 +1,10 @@
{ config, lib, pkgs, inputs, ... }:
{
imports = [
./apps.nix
./backup.nix
./boot.nix
./hardware.nix
../../modules/nixos
];
@ -13,5 +17,16 @@
"flakes"
];
services = {
xserver = {
enable = true;
desktopManager = {
cinnamon.enable = true;
xterm.enable = false;
};
};
displayManager.defaultSession = "cinnamon";
};
system.stateVersion = "24.05";
}