push
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./nix.nix
|
||||||
./user.nix
|
./user.nix
|
||||||
./audio.nix
|
./audio.nix
|
||||||
./graphics.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, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs.gnomeExtensions; [
|
||||||
gnomeExtensions.arcmenu
|
arcmenu
|
||||||
gnomeExtensions.rounded-window-corners-reborn
|
rounded-window-corners-reborn
|
||||||
gnomeExtensions.just-perfection
|
just-perfection
|
||||||
gnomeExtensions.clipboard-history
|
clipboard-history
|
||||||
];
|
];
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
|||||||
3
main.nix
3
main.nix
@@ -8,7 +8,4 @@
|
|||||||
./gnome.nix
|
./gnome.nix
|
||||||
./theming.nix
|
./theming.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
||||||
}
|
}
|
||||||
@@ -8,6 +8,8 @@
|
|||||||
./flatpak.nix
|
./flatpak.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
services.flatpak = {
|
services.flatpak = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user