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
programs.kdeconnect.enable = true;
programs.kdeconnect.enable = false;
programs.wireshark.enable = false;
# Allow unfree packages

View File

@ -8,23 +8,25 @@
[ (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.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/87a2dbee-93c5-4316-811c-90a15f60fdca";
{ device = "/dev/disk/by-uuid/3dda4634-36a6-432a-b03e-00e6543a99f2";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/9BCE-737B";
{ device = "/dev/disk/by-uuid/E487-4436";
fsType = "vfat";
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
# (the default) this is the recommended approach. When using systemd-networkd it's

View File

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

View File

@ -19,7 +19,13 @@
dconf = {
enable = true;
settings."org/gnome/shell" = {
settings = {
"org/gnome/desktop/peripherals/touchpad" = {
click-method = true;
natural-scroll = true;
two-finger-scrolling-enabled = true;
};
"org/gnome/shell" = {
disable-user-extensions = false;
enabled-extensions = with pkgs.gnomeExtensions; [
blur-my-shell.extensionUuid
@ -30,4 +36,5 @@
};
};
};
};
}

View File

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