mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: i3!
This commit is contained in:
parent
add8b013a4
commit
d463824ef1
35 changed files with 2150 additions and 156 deletions
|
|
@ -2,8 +2,8 @@
|
|||
base16 = {
|
||||
inherit (config.home-manager.users.kat.base16) defaultSchemeName defaultScheme schemes;
|
||||
console = {
|
||||
enable = true;
|
||||
getty.enable = true;
|
||||
enable = false;
|
||||
getty.enable = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
6
nixos/common/catppuccin.nix
Normal file
6
nixos/common/catppuccin.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
_: {
|
||||
catppuccin = {
|
||||
enable = true;
|
||||
flavor = "latte";
|
||||
};
|
||||
}
|
||||
17
nixos/environments/i3/xserver.nix
Normal file
17
nixos/environments/i3/xserver.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{pkgs, ...}: {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager = {
|
||||
defaultSession = "none+i3";
|
||||
};
|
||||
windowManager.i3 = {
|
||||
enable = true;
|
||||
extraPackages = with pkgs; [
|
||||
dmenu
|
||||
i3status
|
||||
i3lock
|
||||
i3blocks
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -2,16 +2,13 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
xclip
|
||||
wl-clipboard
|
||||
libsForQt5.qtstyleplugin-kvantum
|
||||
qt6Packages.qtstyleplugin-kvantum
|
||||
commonalitysol
|
||||
kwin-blishhud-shader
|
||||
];
|
||||
environment.plasma6.excludePackages = with pkgs; [konsole];
|
||||
services = {
|
||||
displayManager.sddm = {
|
||||
enable = true;
|
||||
wayland.enable = true;
|
||||
theme = "CommonalitySol";
|
||||
};
|
||||
xserver = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
hardware.graphics = {
|
||||
enable32Bit = true;
|
||||
extraPackages32 = with pkgs; [
|
||||
|
|
|
|||
|
|
@ -8,13 +8,12 @@
|
|||
dnsutils
|
||||
usbutils
|
||||
plexamp
|
||||
prusa-slicer
|
||||
super-slicer-beta
|
||||
inputs.konawall-py.packages.${pkgs.system}.konawall-py
|
||||
barrier
|
||||
];
|
||||
services.udev.packages = [
|
||||
pkgs.android-udev-rules
|
||||
pkgs.zsa-udev-rules
|
||||
pkgs.via
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue