updates and zfs tweaks

This commit is contained in:
Rouven Seifert 2023-01-28 22:28:56 +01:00
parent c8c4be8737
commit a10344afbb
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
5 changed files with 18 additions and 9 deletions

View file

@ -24,11 +24,11 @@
"utils": "utils"
},
"locked": {
"lastModified": 1674771519,
"narHash": "sha256-U0W3S1nX6yEvLh3Vq70EORbmXecAKXfmEfCfaA4A+I8=",
"lastModified": 1674928308,
"narHash": "sha256-elVU4NUZEl11BdT4gC+lrpLYM8Ccxqxs19Ix84HTI9o=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "bb4b25b302dbf0f527f190461b080b5262871756",
"rev": "08a778d80308353f4f65c9dcd3790b5da02d6306",
"type": "github"
},
"original": {
@ -47,11 +47,11 @@
"xdph": "xdph"
},
"locked": {
"lastModified": 1674819116,
"narHash": "sha256-/lOvQnwIxDjz8E0VKKlkHqZ/DjBYXy7miEDegiGMY8M=",
"lastModified": 1674930518,
"narHash": "sha256-EVusv/SJYQHOY/6VmxXC2IFSFtQhrIk6/b0ugd6lxDk=",
"owner": "hyprwm",
"repo": "Hyprland",
"rev": "af37a3895f810ebe3cc58600b0d9b2fcf449b2d1",
"rev": "ce632b7a05a27d121c9544607ccd873adee8bd42",
"type": "github"
},
"original": {

View file

@ -21,6 +21,7 @@
};
services.zfs.autoScrub.enable = true;
services.zfs.autoSnapshot.enable = true;
services.zfs.trim.enable = true;
time.timeZone = "Europe/Berlin";
@ -35,7 +36,7 @@
environment.systemPackages = with pkgs; [
vim
wget
htop
htop-vim
];
programs.git = {
enable = true;

View file

@ -76,6 +76,8 @@
printing.enable = true;
fprintd.enable = true; # log in using fingerprint
openssh.enable = true; # enabled ssh to have the host keys
zfs.autoScrub.enable = true; # periodically check filesystem and repair it
zfs.trim.enable = true; # weekly ssd trimming
};
programs.steam.enable = true; # putting steam in here cause in home manager it doesn't work
@ -100,7 +102,7 @@
wget
gcc
git
htop
htop-vim
dig
traceroute
killall

View file

@ -4,7 +4,6 @@
# essentials
wpa_supplicant_gui
pcmanfm
xsel
# graphics
evince
@ -46,6 +45,7 @@
powerline-fonts
ventoy-bin
ripgrep
baobab
# libs
libyubikey

View file

@ -12,4 +12,10 @@
package = (pkgs.callPackage ../../../../pkgs/dracula-icon-theme { });
};
};
home.pointerCursor = {
gtk.enable = true;
name = "Dracula-cursors";
package = pkgs.dracula-theme;
size = 16;
};
}