diff options
author | Frankie B <git@diskfloppy.me> | 2023-06-24 01:08:36 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2023-06-24 01:08:36 +0100 |
commit | bd80ed88655fef78072acc17db52806338c455c8 (patch) | |
tree | a34ec172198bbbdfe89754a8d9f12eb3812dd4f1 /hosts/nixbox/configuration.nix | |
parent | e0017bb7e66c8071de474e18b9746f7741b943fd (diff) |
actual organization
Diffstat (limited to 'hosts/nixbox/configuration.nix')
-rw-r--r-- | hosts/nixbox/configuration.nix | 25 |
1 files changed, 14 insertions, 11 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; |