Compare commits
3 Commits
5b752f7cfa
...
f8e09d26d1
Author | SHA1 | Date |
---|---|---|
Tim Van Baak | f8e09d26d1 | |
Tim Van Baak | 3a954c35c1 | |
Tim Van Baak | a8730b3a13 |
|
@ -18,31 +18,20 @@
|
||||||
};
|
};
|
||||||
supportedFilesystems = ["zfs"];
|
supportedFilesystems = ["zfs"];
|
||||||
zfs.enableUnstable = true;
|
zfs.enableUnstable = true;
|
||||||
|
kernelParams = [ "zfs.zfs_dmu_offset_next_sync=0" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
system.stateVersion = "22.11"; # Read the usual warning
|
system.stateVersion = "22.11"; # Read the usual warning
|
||||||
|
|
||||||
swapDevices = [ { device = "/swap"; size = 1024; } ];
|
swapDevices = [ { device = "/swap"; size = 1024; } ];
|
||||||
|
|
||||||
beatific.defaults.programs = false; # Disabled until I know the flask-python env isn't necessary for something
|
environment.systemPackages = with pkgs; [
|
||||||
environment.systemPackages = with pkgs;
|
tmux man-pages pv lsof
|
||||||
let
|
|
||||||
py3-packages = python-packages: with python-packages; [
|
|
||||||
flask
|
|
||||||
];
|
|
||||||
py3-with-packages = python3.withPackages py3-packages;
|
|
||||||
in [
|
|
||||||
wget vim curl git htop bash tmux psmisc man-pages pv lsof
|
|
||||||
zip unzip
|
|
||||||
py3-with-packages
|
|
||||||
usbutils
|
usbutils
|
||||||
hdparm sdparm smartmontools gptfdisk gnufdisk
|
hdparm sdparm smartmontools gptfdisk gnufdisk
|
||||||
dosfstools
|
dosfstools
|
||||||
mkpasswd samba
|
mkpasswd samba
|
||||||
#file-rename
|
|
||||||
rsync
|
|
||||||
rclone gnupg
|
rclone gnupg
|
||||||
tree
|
|
||||||
exiftool
|
exiftool
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -83,13 +83,16 @@ in {
|
||||||
bc # Terminal calculator
|
bc # Terminal calculator
|
||||||
curl
|
curl
|
||||||
duf
|
duf
|
||||||
file
|
file # File type inspector
|
||||||
killall
|
|
||||||
nebula
|
nebula
|
||||||
|
psmisc # provides killall
|
||||||
python3
|
python3
|
||||||
tree
|
rsync
|
||||||
|
tree # Directory tree view
|
||||||
|
unzip
|
||||||
vim
|
vim
|
||||||
wget
|
wget
|
||||||
|
zip
|
||||||
];
|
];
|
||||||
programs = {
|
programs = {
|
||||||
git = {
|
git = {
|
||||||
|
|
Loading…
Reference in New Issue