Ginoza update system

This commit is contained in:
foglar 2025-04-10 18:49:33 +02:00
parent b754fac210
commit 34e6438986
5 changed files with 39 additions and 29 deletions

View File

@ -76,7 +76,7 @@
}; };
# Basic programs to enable # Basic programs to enable
programs.kdeconnect.enable = true; programs.kdeconnect.enable = false;
programs.wireshark.enable = false; programs.wireshark.enable = false;
# Allow unfree packages # Allow unfree packages

View File

@ -8,23 +8,25 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "usb_storage" "sd_mod" "sdhci_acpi" "rtsx_pci_sdmmc" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "usbhid" "sdhci_acpi" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ]; boot.kernelModules = [ ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/87a2dbee-93c5-4316-811c-90a15f60fdca"; { device = "/dev/disk/by-uuid/3dda4634-36a6-432a-b03e-00e6543a99f2";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/9BCE-737B"; { device = "/dev/disk/by-uuid/E487-4436";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ]; options = [ "fmask=0077" "dmask=0077" ];
}; };
swapDevices = [ ]; swapDevices =
[ { device = "/dev/disk/by-uuid/04c27abd-36f9-43c0-ab81-1fa1a7c1c58c"; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's

View File

@ -67,6 +67,7 @@
gimp gimp
mpv mpv
loupe loupe
bluefish
]) ])
++ ( ++ (
with pkgs; [harmony-music] with pkgs; [harmony-music]

View File

@ -19,14 +19,21 @@
dconf = { dconf = {
enable = true; enable = true;
settings."org/gnome/shell" = { settings = {
disable-user-extensions = false; "org/gnome/desktop/peripherals/touchpad" = {
enabled-extensions = with pkgs.gnomeExtensions; [ click-method = true;
blur-my-shell.extensionUuid natural-scroll = true;
gsconnect.extensionUuid two-finger-scrolling-enabled = true;
appindicator.extensionUuid };
privacy-settings-menu.extensionUuid "org/gnome/shell" = {
]; disable-user-extensions = false;
enabled-extensions = with pkgs.gnomeExtensions; [
blur-my-shell.extensionUuid
gsconnect.extensionUuid
appindicator.extensionUuid
privacy-settings-menu.extensionUuid
];
};
}; };
}; };
}; };

View File

@ -17,22 +17,22 @@
base16Scheme = base16Scheme =
if userSettings.theme == "catppuccin-mocha" if userSettings.theme == "catppuccin-mocha"
then { then {
base00 = "#1e1e2e"; base00 = "1e1e2e";
base01 = "#181825"; # mantle base01 = "181825"; # mantle
base02 = "#313244"; # surface0 base02 = "313244"; # surface0
base03 = "#45475a"; # surface1 base03 = "45475a"; # surface1
base04 = "#585b70"; # surface2 base04 = "585b70"; # surface2
base05 = "#cdd6f4"; # text base05 = "cdd6f4"; # text
base06 = "#f5e0dc"; # rosewater base06 = "f5e0dc"; # rosewater
base07 = "#b4befe"; # lavender base07 = "b4befe"; # lavender
base08 = "#f38ba8"; # red base08 = "f38ba8"; # red
base09 = "#fab387"; # peach base09 = "fab387"; # peach
base0A = "#f9e2af"; # yellow base0A = "f9e2af"; # yellow
base0B = "#a6e3a1"; # green base0B = "a6e3a1"; # green
base0C = "#94e2d5"; # teal base0C = "94e2d5"; # teal
base0D = "#89b4fa"; # blue base0D = "89b4fa"; # blue
base0E = "#cba6f7"; # mauve base0E = "cba6f7"; # mauve
base0F = "#f2cdcd"; # flamingo base0F = "f2cdcd"; # flamingo
} }
else if userSettings.theme == "evangelion-blood" else if userSettings.theme == "evangelion-blood"
then # List all possible themes: $ nix build nixpkgs#base16-schemes && ls result/share/themes then # List all possible themes: $ nix build nixpkgs#base16-schemes && ls result/share/themes