Flake Experiment

This commit is contained in:
2026-02-04 14:58:17 -07:00
parent ffc042d536
commit d80a9be891
4 changed files with 62 additions and 11 deletions

22
common.nix Normal file
View File

@@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
imports = [
# Import Modules
./modules/boot.nix
./modules/networking.nix
./modules/locale.nix
./modules/desktop.nix
./modules/audio.nix
./modules/users.nix
./modules/programs.nix
./modules/hardware.nix
./modules/services.nix
./modules/home.nix
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# xdg.portal.config.common.default = [ "gnome" ];
system.stateVersion = "25.11";
}