Separate boot and interface configurations

This commit is contained in:
2024-06-14 20:08:59 -07:00
parent d7092da122
commit 43318032c2
4 changed files with 47 additions and 32 deletions

View File

@@ -2,6 +2,8 @@
{
imports = [
./hardware.nix
./boot.nix
./interface.nix
./networking.nix
./users.nix
./coding.nix
@@ -9,25 +11,16 @@
];
time.timeZone = "America/Los_Angeles";
i18n.defaultLocale = "en_US.UTF-8";
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
lshw
firefox
];
services.xserver = {
enable = true;
desktopManager = {
cinnamon.enable = true;
xterm.enable = false;
};
nixpkgs = {
hostPlatform = "x86_64-linux";
config.allowUnfree = true;
};
services.displayManager.defaultSession = "cinnamon";
system.stateVersion = "24.05";
}