This commit is contained in:
4DBug
2025-03-22 15:51:26 -05:00
parent 2791c62305
commit 6edfada411
5 changed files with 15 additions and 8 deletions

View File

@@ -3,6 +3,7 @@
{
imports = [
./nix.nix
./user.nix
./audio.nix
./graphics.nix

7
core/nix.nix Normal file
View File

@@ -0,0 +1,7 @@
{ config, ... }:
{
system.stateVersion = "24.11";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}

View File

@@ -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 = {

View File

@@ -8,7 +8,4 @@
./gnome.nix
./theming.nix
];
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}

View File

@@ -8,6 +8,8 @@
./flatpak.nix
];
nixpkgs.config.allowUnfree = true;
services.flatpak = {
enable = true;