feat: support more fs for default x86-linux
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
df6fc2d165
commit
261efa8768
2 changed files with 37 additions and 17 deletions
|
@ -72,6 +72,36 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
boot.supportedFilesystems = ["ext4" "xfs" "btrfs" "vfat" "ntfs"];
|
||||||
|
system.fsPackages = with pkgs; [
|
||||||
|
btrfs-progs
|
||||||
|
nfs-utils
|
||||||
|
ntfs3g
|
||||||
|
xfsprogs
|
||||||
|
];
|
||||||
|
|
||||||
|
environment.systemPackages =
|
||||||
|
(with pkgs; [
|
||||||
|
# File management
|
||||||
|
imagemagick
|
||||||
|
unzip
|
||||||
|
zip
|
||||||
|
|
||||||
|
# Peripherals
|
||||||
|
hdparm
|
||||||
|
pciutils
|
||||||
|
usbutils
|
||||||
|
])
|
||||||
|
++ [
|
||||||
|
nix-melt.packages.${pkgs.system}.default
|
||||||
|
|
||||||
|
(nurl.packages.${pkgs.system}.default.override {
|
||||||
|
nix = config.nix.package;
|
||||||
|
})
|
||||||
|
|
||||||
|
mozilla-addons-to-nix.packages.${pkgs.system}.default
|
||||||
|
];
|
||||||
|
|
||||||
home-manager = let
|
home-manager = let
|
||||||
inherit (lib) mapAttrs' nameValuePair;
|
inherit (lib) mapAttrs' nameValuePair;
|
||||||
|
|
||||||
|
@ -105,15 +135,6 @@
|
||||||
source = v;
|
source = v;
|
||||||
})
|
})
|
||||||
self.devShells.${pkgs.system};
|
self.devShells.${pkgs.system};
|
||||||
|
|
||||||
home.packages = [
|
|
||||||
nix-melt.packages.${pkgs.system}.default
|
|
||||||
|
|
||||||
(nurl.packages.${pkgs.system}.default.override {
|
|
||||||
nix = config.nix.package;
|
|
||||||
})
|
|
||||||
mozilla-addons-to-nix.packages.${pkgs.system}.default
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
users = {
|
users = {
|
||||||
|
|
|
@ -12,20 +12,19 @@
|
||||||
undollar
|
undollar
|
||||||
])
|
])
|
||||||
++ (with pkgs; [
|
++ (with pkgs; [
|
||||||
|
# Networking
|
||||||
dig.dnsutils
|
dig.dnsutils
|
||||||
imagemagick
|
|
||||||
killall
|
|
||||||
mosh
|
mosh
|
||||||
|
openssh
|
||||||
|
rsync
|
||||||
|
wget
|
||||||
|
|
||||||
|
# Misc CLI stuff
|
||||||
|
killall
|
||||||
neofetch
|
neofetch
|
||||||
nix-output-monitor
|
nix-output-monitor
|
||||||
openssh
|
|
||||||
progress
|
progress
|
||||||
rsync
|
|
||||||
tree
|
tree
|
||||||
unzip
|
|
||||||
usbutils
|
|
||||||
wget
|
|
||||||
zip
|
|
||||||
])
|
])
|
||||||
++ [
|
++ [
|
||||||
# This could help as well: nix derivation show -r /run/current-system
|
# This could help as well: nix derivation show -r /run/current-system
|
||||||
|
|
Loading…
Reference in a new issue