treefmt
This commit is contained in:
parent
5b21da30ba
commit
f992a50964
|
@ -9,47 +9,41 @@
|
||||||
# take overlays from flake
|
# take overlays from flake
|
||||||
nixpkgs.overlays = lib.attrValues config.inputInjection.flake-inputs.self.overlays;
|
nixpkgs.overlays = lib.attrValues config.inputInjection.flake-inputs.self.overlays;
|
||||||
# List packages installed in system profile.
|
# List packages installed in system profile.
|
||||||
environment.systemPackages =
|
environment.systemPackages = with pkgs; [
|
||||||
with pkgs;
|
wget
|
||||||
[
|
vim
|
||||||
wget
|
vimPlugins.vim-nix
|
||||||
vim
|
vimPlugins.pathogen
|
||||||
vimPlugins.vim-nix
|
tmux
|
||||||
vimPlugins.pathogen
|
htop
|
||||||
tmux
|
zsh
|
||||||
htop
|
btrfs-progs
|
||||||
zsh
|
git
|
||||||
btrfs-progs
|
python3
|
||||||
git
|
man-pages
|
||||||
python3
|
dnsutils
|
||||||
man-pages
|
netcat-openbsd
|
||||||
dnsutils
|
ntfs3g
|
||||||
netcat-openbsd
|
file
|
||||||
ntfs3g
|
multipath-tools
|
||||||
file
|
strace
|
||||||
multipath-tools
|
ltrace
|
||||||
strace
|
valgrind
|
||||||
ltrace
|
testdisk
|
||||||
valgrind
|
rsync
|
||||||
testdisk
|
pv
|
||||||
rsync
|
exfat
|
||||||
pv
|
iotop
|
||||||
exfat
|
cifs-utils
|
||||||
iotop
|
dstat
|
||||||
cifs-utils
|
lsof
|
||||||
dstat
|
macchanger
|
||||||
lsof
|
borgbackup
|
||||||
macchanger
|
|
||||||
borgbackup
|
|
||||||
|
|
||||||
# for debugging WLAN failures:
|
# for debugging WLAN failures:
|
||||||
ethtool
|
ethtool
|
||||||
trace-cmd
|
trace-cmd
|
||||||
|
|
||||||
# NetworkManager stuff
|
|
||||||
networkmanager-openconnect
|
|
||||||
networkmanager-vpnc
|
|
||||||
networkmanager-openvpn
|
|
||||||
plasma5Packages.kdeGear.akonadi-mime # for KOrganizer
|
plasma5Packages.kdeGear.akonadi-mime # for KOrganizer
|
||||||
]
|
]
|
||||||
++ (
|
++ (
|
||||||
|
@ -95,4 +89,8 @@
|
||||||
accountsservice
|
accountsservice
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
# NetworkManager stuff
|
||||||
|
networkmanager-openconnect
|
||||||
|
networkmanager-vpnc
|
||||||
|
networkmanager-openvpn
|
||||||
}
|
}
|
||||||
|
|
|
@ -122,7 +122,7 @@ let
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonTools = with python3Packages; [
|
pythonTools = with python3Packages; [
|
||||||
python3 # to shadow old macOS python
|
python3 # to shadow old macOS python
|
||||||
notebook
|
notebook
|
||||||
ipython
|
ipython
|
||||||
pip
|
pip
|
||||||
|
|
|
@ -46,7 +46,6 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
systemd-boot.enable = true;
|
systemd-boot.enable = true;
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
|
|
Loading…
Reference in a new issue