aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/nixbox/configuration.nix25
-rw-r--r--hosts/nixpad/configuration.nix9
2 files changed, 20 insertions, 14 deletions
diff --git a/hosts/nixbox/configuration.nix b/hosts/nixbox/configuration.nix
index febaeb7..e66b634 100644
--- a/hosts/nixbox/configuration.nix
+++ b/hosts/nixbox/configuration.nix
@@ -108,32 +108,35 @@
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
+ # security is for wusses
+ nixpkgs.config.permittedInsecurePackages = [
+ "openssl-1.1.1u"
+ ];
+
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
- vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
+ # Tools
+ vim
wget
git
gnupg
pinentry
- nerdfonts
- jetbrains-mono
kitty
ntfs3g
- dolphin-emu
- htop
+ pulseaudioFull
+ linuxKernel.packages.linux_zen.v4l2loopback
pciutils
usbutils
isoimagewriter
- jdk17
- prismlauncher
- maven
nvtop
+ screen
pavucontrol
paprefs
- pulseaudioFull
- screen
- linuxKernel.packages.linux_zen.v4l2loopback
+
+ # Fonts
+ nerdfonts
+ jetbrains-mono
];
programs.fish.enable = true;
diff --git a/hosts/nixpad/configuration.nix b/hosts/nixpad/configuration.nix
index fbf49f2..d24216b 100644
--- a/hosts/nixpad/configuration.nix
+++ b/hosts/nixpad/configuration.nix
@@ -108,15 +108,18 @@
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
- vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
+ # Tools
+ vim
wget
git
gnupg
pinentry
- nerdfonts
- jetbrains-mono
kitty
ntfs3g
+
+ # Fonts
+ nerdfonts
+ jetbrains-mono
];
programs.fish.enable = true;