push
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
|
||||
{
|
||||
imports = [
|
||||
./nix.nix
|
||||
./user.nix
|
||||
./audio.nix
|
||||
./graphics.nix
|
||||
|
||||
7
core/nix.nix
Normal file
7
core/nix.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
system.stateVersion = "24.11";
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
}
|
||||
10
gnome.nix
10
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 = {
|
||||
|
||||
3
main.nix
3
main.nix
@@ -8,7 +8,4 @@
|
||||
./gnome.nix
|
||||
./theming.nix
|
||||
];
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
}
|
||||
@@ -8,6 +8,8 @@
|
||||
./flatpak.nix
|
||||
];
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
services.flatpak = {
|
||||
enable = true;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user