ljfdljkfsdlkj
This commit is contained in:
parent
552fc00f87
commit
f38f05c4e7
12
base.nix
12
base.nix
|
@ -15,6 +15,18 @@
|
||||||
)
|
)
|
||||||
];
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
ddrescue
|
||||||
|
gptfdisk
|
||||||
|
ms-sys
|
||||||
|
nvme-cli
|
||||||
|
parted
|
||||||
|
pciutils
|
||||||
|
smartmontools
|
||||||
|
testdisk
|
||||||
|
usbutils
|
||||||
|
];
|
||||||
|
|
||||||
# TODO: selectively whitelist?
|
# TODO: selectively whitelist?
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
nixpkgs.config.allowUnfreePredicate = (pkg: true);
|
nixpkgs.config.allowUnfreePredicate = (pkg: true);
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
../../profiles/shell/nix-utils.nix
|
../../profiles/shell/nix-utils.nix
|
||||||
../../profiles/shell/binfmt-emu.nix
|
../../profiles/shell/binfmt-emu.nix
|
||||||
|
|
||||||
|
../../profiles/desktop/base.nix
|
||||||
../../profiles/desktop/gnome # configures gdm
|
../../profiles/desktop/gnome # configures gdm
|
||||||
#../../profiles/desktop/sound/alsa.nix
|
#../../profiles/desktop/sound/alsa.nix
|
||||||
#../../profiles/desktop/sound/pulseaudio.nix
|
#../../profiles/desktop/sound/pulseaudio.nix
|
||||||
|
|
|
@ -34,6 +34,7 @@
|
||||||
../../profiles/shell/nix-utils.nix
|
../../profiles/shell/nix-utils.nix
|
||||||
../../profiles/shell/binfmt-emu.nix
|
../../profiles/shell/binfmt-emu.nix
|
||||||
|
|
||||||
|
../../profiles/desktop/base.nix
|
||||||
../../profiles/desktop/gnome # configures gdm
|
../../profiles/desktop/gnome # configures gdm
|
||||||
#../../profiles/desktop/sound/alsa.nix
|
#../../profiles/desktop/sound/alsa.nix
|
||||||
#../../profiles/desktop/sound/pulseaudio.nix
|
#../../profiles/desktop/sound/pulseaudio.nix
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
gparted
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
|
@ -5,7 +5,7 @@ in
|
||||||
{
|
{
|
||||||
_module.args.mkDomain = mkDomain;
|
_module.args.mkDomain = mkDomain;
|
||||||
_module.args.allSubdomains = lib.pipe config.services.nginx.virtualHosts [
|
_module.args.allSubdomains = lib.pipe config.services.nginx.virtualHosts [
|
||||||
(lib.mapAttrsToList (domain: vhost: [ domain ] ++ vhost.serverAliases))
|
#(lib.mapAttrsToList (domain: vhost: [ domain ] ++ vhost.serverAliases))
|
||||||
(lib.mapAttrsToList (domain: vhost: [ domain ]))
|
(lib.mapAttrsToList (domain: vhost: [ domain ]))
|
||||||
lib.flatten
|
lib.flatten
|
||||||
(lib.sort (x: y: x<y))
|
(lib.sort (x: y: x<y))
|
||||||
|
|
|
@ -73,6 +73,7 @@
|
||||||
nix-output-monitor
|
nix-output-monitor
|
||||||
nixpkgs-review
|
nixpkgs-review
|
||||||
nixpkgs-hammering
|
nixpkgs-hammering
|
||||||
|
nurl
|
||||||
manix
|
manix
|
||||||
comma
|
comma
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue