pełna konfiguracja noctalia i czystka waybar, swaync, wlogout i skryptów

This commit is contained in:
2026-02-02 21:23:05 +01:00
parent 80d7fc08cc
commit e5b5d68808
117 changed files with 1041 additions and 6119 deletions

View File

@@ -1,16 +0,0 @@
_: {
programs.auto-cpufreq = {
enable = true;
settings = {
charger = {
governor = "performance";
turbo = "auto";
};
battery = {
governor = "powersave";
turbo = "auto";
};
};
};
}

View File

@@ -1,7 +1,6 @@
{inputs, ...}: {
imports = [
./packages
./auto-cpufreq.nix
./boot.nix
./docker.nix
./flatpak.nix

View File

@@ -1,9 +1,4 @@
{
pkgs,
inputs,
system,
...
}: {
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
mpv
pavucontrol
@@ -62,6 +57,16 @@
matugen
app2unit
gpu-screen-recorder
power-profiles-daemon
# hyprland
swww
grim
slurp
wl-clipboard
swappy
ydotool
hyprpolkitagent
hyprland-qtutils # needed for banners and ANR messages
# pyprland
pyprland
];
}

View File

@@ -9,7 +9,6 @@ _: {
seahorse.enable = true;
fuse.userAllowOther = true;
mtr.enable = true;
hyprlock.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;

View File

@@ -1,4 +1,8 @@
{profile, ...}: {
{
profile,
pkgs,
...
}: {
# Services to start
services = {
libinput.enable = true; # Input Handling
@@ -13,10 +17,11 @@
};
ports = [22];
};
blueman.enable = true; # Bluetooth Support
tumbler.enable = true; # Image/video preview
gnome.gnome-keyring.enable = true;
gnome = {
gnome-keyring.enable = true;
evolution-data-server.enable = true;
};
smartd = {
enable =
if profile == "vm"
@@ -53,6 +58,13 @@
];
};
};
upower.enable = true; # noctalia shell battery
upower = {
enable = true;
package = pkgs.upower;
};
power-profiles-daemon = {
enable = true;
package = pkgs.power-profiles-daemon;
};
};
}

View File

@@ -8,25 +8,7 @@ in {
# Styling Options
stylix = {
enable = true;
image = stylixImage;
# base16Scheme = {
# base00 = "282936";
# base01 = "3a3c4e";
# base02 = "4d4f68";
# base03 = "626483";
# base04 = "62d6e8";
# base05 = "e9e9f4";
# base06 = "f1f2f8";
# base07 = "f7f7fb";
# base08 = "ea51b2";
# base09 = "b45bcf";
# base0A = "00f769";
# base0B = "ebff87";
# base0C = "a1efe4";
# base0D = "62d6e8";
# base0E = "b45bcf";
# base0F = "00f769";
# };
image = ../../wallpapers/${stylixImage};
polarity = "dark";
opacity.terminal = 1.0;
cursor = {
@@ -36,16 +18,16 @@ in {
};
fonts = {
monospace = {
package = pkgs.nerd-fonts.jetbrains-mono;
name = "JetBrains Mono";
package = pkgs.nerd-fonts.fira-mono;
name = "FiraCode Nerd Font Mono";
};
sansSerif = {
package = pkgs.montserrat;
name = "Montserrat";
package = pkgs.nerd-fonts.fira-code;
name = "FiraCode Nerd Font Propo";
};
serif = {
package = pkgs.montserrat;
name = "Montserrat";
package = pkgs.nerd-fonts.fira-code;
name = "FiraCode Nerd Font";
};
sizes = {
applications = 12;

View File

@@ -24,7 +24,11 @@ in {
;
};
users.${username} = {
imports = [./../home ../../hosts/${host}/home-modules.nix];
imports = [
./../home
../../hosts/${host}/home-modules.nix
inputs.noctalia.homeModules.default
];
home = {
username = "${username}";
homeDirectory = "/home/${username}";