moore updates

This commit is contained in:
2025-05-18 14:54:45 +02:00
parent 7bfaf91106
commit 2cd92178ec
14 changed files with 193 additions and 88 deletions

View File

@@ -1,4 +1,4 @@
{pkgs, ...}:
{pkgs, ...}:
{
# Add a udev rule that launches a backup using restic when a specific USB device (the backup drive) is plugged in
@@ -22,4 +22,4 @@
ExecStart = "${pkgs.restic}/bin/restic backup /home/username";
};
};
}
}

View File

@@ -8,7 +8,6 @@
services.flatpak.uninstallUnmanaged = false;
services.flatpak.packages = [
"com.calibre_ebook.calibre"
"com.github.flxzt.rnote"
"com.github.tchx84.Flatseal"
"com.spotify.Client"

View File

@@ -0,0 +1,11 @@
{
inputs,
pkgs,
...
}:
{
environment.systemPackages =
with pkgs; [
inputs.better-control.packages.${pkgs.system}.better-control
];
}

View File

@@ -1,5 +1,6 @@
{
imports = [
# ./better-control.nix
./cursor.nix
./hyprland-customization.nix
./hyprpaper.nix
@@ -7,4 +8,4 @@
./hypridle.nix
./waybar.nix
];
}
}

View File

@@ -54,7 +54,6 @@
"$mod, Tab, cyclenext,"
"$mod, Tab, bringactivetotop,"
# Move the window
"$mod+Shift, left, movewindow, l"
"$mod+Shift, right, movewindow, r"
@@ -65,8 +64,8 @@
"$mod+Ctrl, right, movetoworkspace, +1"
# # Switch workspace
# "$mod+Ctrl, left, workspace, -1"
# "$mod+Ctrl, right, workspace, +1"
"$mod+Alt, left, workspace, -1"
"$mod+Alt, right, workspace, +1"
# Screenshot
"$mod, Print, exec, hyprshot -m region -o ~/Pictures/Screenshots"
@@ -161,7 +160,7 @@
};
decoration = {
rounding = 5;
rounding = 7;
# active_opacity = 0.95;
inactive_opacity = 0.9;

View File

@@ -4,7 +4,8 @@
enable = true;
settings = {
general = {
grace = 5;
# immediately lock the screen
grace = 0;
no_fade_in = false;
disable_loading_bar = false;
};

View File

@@ -204,7 +204,7 @@
.module {
background: rgba(0, 0, 0, 0.6);
color: white;
border-radius: 5px;
border-radius: 7px;
padding: 5px 5px 5px 5px;
margin: 5px 0;
}

10
modules/nixos/nh.nix Normal file
View File

@@ -0,0 +1,10 @@
{
config,
pkgs,
...
}:
{
programs.nh = {
enable = true;
};
}

View File

@@ -29,13 +29,12 @@
};
package = config.boot.kernelPackages.nvidiaPackages.mkDriver {
version = "570.86.16"; # use new 570 drivers
sha256_64bit = "sha256-RWPqS7ZUJH9JEAWlfHLGdqrNlavhaR1xMyzs8lJhy9U=";
openSha256 = "sha256-DuVNA63+pJ8IB7Tw2gM4HbwlOh1bcDg2AN2mbEU9VPE=";
settingsSha256 = "sha256-9rtqh64TyhDF5fFAYiWl3oDHzKJqyOW3abpcf2iNRT8=";
version = "575.51.02";
sha256_64bit = "sha256-XZ0N8ISmoAC8p28DrGHk/YN1rJsInJ2dZNL8O+Tuaa0=";
openSha256 = "sha256-NQg+QDm9Gt+5bapbUO96UFsPnz1hG1dtEwT/g/vKHkw=";
settingsSha256 = "sha256-6n9mVkEL39wJj5FB1HBml7TTJhNAhS/j5hqpNGFQE4w=";
usePersistenced = false;
};
};
# overwrite the blacklists set previously
boot.extraModprobeConfig = lib.mkForce "";