From 6edfada41108f04b2777d9b44e6da351422230bf Mon Sep 17 00:00:00 2001 From: 4DBug Date: Sat, 22 Mar 2025 15:51:26 -0500 Subject: [PATCH] push --- core/core.nix | 1 + core/nix.nix | 7 +++++++ gnome.nix | 10 +++++----- main.nix | 3 --- packages/packages.nix | 2 ++ 5 files changed, 15 insertions(+), 8 deletions(-) create mode 100644 core/nix.nix diff --git a/core/core.nix b/core/core.nix index 51d0816..c7cf0cd 100644 --- a/core/core.nix +++ b/core/core.nix @@ -3,6 +3,7 @@ { imports = [ + ./nix.nix ./user.nix ./audio.nix ./graphics.nix diff --git a/core/nix.nix b/core/nix.nix new file mode 100644 index 0000000..8f803af --- /dev/null +++ b/core/nix.nix @@ -0,0 +1,7 @@ + +{ config, ... }: + +{ + system.stateVersion = "24.11"; + nix.settings.experimental-features = [ "nix-command" "flakes" ]; +} \ No newline at end of file diff --git a/gnome.nix b/gnome.nix index 8056a19..2074b49 100644 --- a/gnome.nix +++ b/gnome.nix @@ -1,11 +1,11 @@ { config, pkgs, ... }: { - environment.systemPackages = with pkgs; [ - gnomeExtensions.arcmenu - gnomeExtensions.rounded-window-corners-reborn - gnomeExtensions.just-perfection - gnomeExtensions.clipboard-history + environment.systemPackages = with pkgs.gnomeExtensions; [ + arcmenu + rounded-window-corners-reborn + just-perfection + clipboard-history ]; services = { diff --git a/main.nix b/main.nix index 25064b5..829106c 100644 --- a/main.nix +++ b/main.nix @@ -8,7 +8,4 @@ ./gnome.nix ./theming.nix ]; - - nixpkgs.config.allowUnfree = true; - nix.settings.experimental-features = [ "nix-command" "flakes" ]; } \ No newline at end of file diff --git a/packages/packages.nix b/packages/packages.nix index bd21fa3..935b2c8 100644 --- a/packages/packages.nix +++ b/packages/packages.nix @@ -8,6 +8,8 @@ ./flatpak.nix ]; + nixpkgs.config.allowUnfree = true; + services.flatpak = { enable = true;