Compare commits

...

4 commits

6 changed files with 16 additions and 2 deletions

View file

@ -13,6 +13,8 @@
boot.plymouth = { boot.plymouth = {
enable = true; enable = true;
themePackages = [(pkgs.catppuccin.override { variant = "mocha"; accent = "mauve"; })];
theme = "catppuccin-mocha";
}; };
boot.initrd.systemd.enable = true; boot.initrd.systemd.enable = true;

View file

@ -4,6 +4,7 @@
zfsSupport = true; zfsSupport = true;
efiSupport = true; efiSupport = true;
efiInstallAsRemovable = true; efiInstallAsRemovable = true;
theme = "${pkgs.catppuccin.override { variant = "mocha"; accent = "mauve"; }}/grub";
mirroredBoots = [ mirroredBoots = [
{ devices = [ "nodev"]; path = "/boot"; } { devices = [ "nodev"]; path = "/boot"; }
]; ];

View file

@ -120,6 +120,7 @@
./home/ash/alex.nix ./home/ash/alex.nix
./home/ash/desktop.nix ./home/ash/desktop.nix
./home/ash/emacs.nix ./home/ash/emacs.nix
./home/ash/obs.nix
./home/ash/intellij.nix ./home/ash/intellij.nix
./home/ash/lutris.nix ./home/ash/lutris.nix
./home/ash/vscodium.nix ./home/ash/vscodium.nix

View file

@ -5,7 +5,7 @@
wlrobs wlrobs
obs-backgroundremoval obs-backgroundremoval
obs-pipewire-audio-capture obs-pipewire-audio-capture
obs-ndi # obs-ndi
]; ];
}; };
} }

View file

@ -27,6 +27,7 @@
catppuccin.catppuccin-vsc catppuccin.catppuccin-vsc
catppuccin.catppuccin-vsc-icons catppuccin.catppuccin-vsc-icons
ziglang.vscode-zig ziglang.vscode-zig
redhat.java
]); ]);
}) })
]; ];

View file

@ -36,7 +36,10 @@
enable = true; enable = true;
xkb.layout = "gb"; xkb.layout = "gb";
}; };
displayManager.sddm.enable = true; displayManager.sddm = {
enable = true;
theme = "catppuccin-mocha";
};
desktopManager.plasma6.enable = true; desktopManager.plasma6.enable = true;
}; };
@ -50,6 +53,7 @@
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
hardware.rtl-sdr.enable = true; hardware.rtl-sdr.enable = true;
users.users.ash.extraGroups = ["plugdev"]; users.users.ash.extraGroups = ["plugdev"];
hardware.usb-modeswitch.enable = true;
programs.steam.enable = true; programs.steam.enable = true;
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
@ -67,6 +71,11 @@
}; };
environment.sessionVariables = { LIBVA_DRIVER_NAME = "iHD"; }; environment.sessionVariables = { LIBVA_DRIVER_NAME = "iHD"; };
environment.systemPackages = with pkgs; [
(catppuccin-sddm.override {
flavor = "mocha";
})
];
boot.extraModulePackages = with config.boot.kernelPackages; [ xpadneo ]; boot.extraModulePackages = with config.boot.kernelPackages; [ xpadneo ];