Compare commits

...

4 commits

6 changed files with 16 additions and 2 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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