Compare commits
4 commits
cdab35f904
...
d05dafe487
Author | SHA1 | Date | |
---|---|---|---|
d05dafe487 | |||
6778b6d08a | |||
b53f5340e2 | |||
ab84072169 |
6 changed files with 16 additions and 2 deletions
|
@ -13,6 +13,8 @@
|
|||
|
||||
boot.plymouth = {
|
||||
enable = true;
|
||||
themePackages = [(pkgs.catppuccin.override { variant = "mocha"; accent = "mauve"; })];
|
||||
theme = "catppuccin-mocha";
|
||||
};
|
||||
boot.initrd.systemd.enable = true;
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
zfsSupport = true;
|
||||
efiSupport = true;
|
||||
efiInstallAsRemovable = true;
|
||||
theme = "${pkgs.catppuccin.override { variant = "mocha"; accent = "mauve"; }}/grub";
|
||||
mirroredBoots = [
|
||||
{ devices = [ "nodev"]; path = "/boot"; }
|
||||
];
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
wlrobs
|
||||
obs-backgroundremoval
|
||||
obs-pipewire-audio-capture
|
||||
obs-ndi
|
||||
# obs-ndi
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
catppuccin.catppuccin-vsc
|
||||
catppuccin.catppuccin-vsc-icons
|
||||
ziglang.vscode-zig
|
||||
redhat.java
|
||||
]);
|
||||
})
|
||||
];
|
||||
|
|
|
@ -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 ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue