fix: a ton of different changes
home.nix:
- Bumped home.stateVersion from "23.05" to "25.05"
- Removed the nixConfigDirectory let binding and verbose comments,
simplified to dconf.settings = {
- Removed org/gnome/desktop/background block (cat.png wallpaper)
- Removed antigravity-fhs from packages
- Removed duplicate zulip entry
configuration.nix:
- Removed "usbcore.autosuspend=-1" from boot.kernelParams
- Added targeted udev rules for Framework fingerprint reader (27a6) and
USB-C hub (32ac) autosuspend
- Added services.fstrim.enable = true for NVMe/SSD health
- Added nix.optimise.automatic = true for periodic store deduplication
- Removed duplicate comment and entire cat.png activation script
hardware-configuration.nix:
- Replaced 96GB swapfile config with swapDevices = [ ]
flake.nix:
- Removed the antigravity overlay (override + fhs binding)
This commit is contained in:
parent
044cc7da4a
commit
acecc56229
4 changed files with 12 additions and 56 deletions
20
home.nix
20
home.nix
|
|
@ -5,19 +5,10 @@
|
|||
|
||||
home.username = "jet";
|
||||
home.homeDirectory = "/home/jet";
|
||||
home.stateVersion = "23.05";
|
||||
home.stateVersion = "25.05";
|
||||
|
||||
# Define configuration directory
|
||||
# Note: we can't use config.home.homeDirectory in the let block if we're also defining it in the set
|
||||
# recursively without strict evaluation issues sometimes, but here it should be fine if we just use the string.
|
||||
# Safer to just use /home/jet or home.homeDirectory if it was passed in.
|
||||
# Actually, `config.home.homeDirectory` is safe to use inside simple attribute sets.
|
||||
# Let's use a let binding for clarity.
|
||||
|
||||
# Configure GNOME settings
|
||||
dconf.settings = let
|
||||
nixConfigDirectory = "${config.home.homeDirectory}/Documents/nix-config";
|
||||
in {
|
||||
dconf.settings = {
|
||||
"org/gnome/desktop/interface" = {
|
||||
clock-format = "12h";
|
||||
clock-show-weekday = true;
|
||||
|
|
@ -28,11 +19,6 @@
|
|||
"org/gnome/system/location" = {
|
||||
enabled = true;
|
||||
};
|
||||
"org/gnome/desktop/background" = {
|
||||
picture-uri = "file://${nixConfigDirectory}/cat.png";
|
||||
picture-uri-dark = "file://${nixConfigDirectory}/cat.png";
|
||||
picture-options = "wallpaper";
|
||||
};
|
||||
"org/gnome/settings-daemon/plugins/power" = {
|
||||
sleep-inactive-ac-type = "nothing";
|
||||
};
|
||||
|
|
@ -103,10 +89,8 @@
|
|||
nemo-with-extensions
|
||||
file-roller
|
||||
font-manager
|
||||
antigravity-fhs
|
||||
claude-code
|
||||
kdePackages.kdenlive
|
||||
zulip
|
||||
vesktop
|
||||
obs-studio
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue