aboutsummaryrefslogtreecommitdiff
path: root/srv
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2025-04-15 23:50:00 +0200
committerLinnea Gräf <nea@nea.moe>2025-04-15 23:50:00 +0200
commit04e73191d7a1b0bdf06fc107a034f0184410e345 (patch)
treec9ad9b716fa3111459fcbaa7647ea18df3d03388 /srv
parent38316484320a722cdacde91bc7f721fe20e1389b (diff)
downloadnix-infra-04e73191d7a1b0bdf06fc107a034f0184410e345.tar.gz
nix-infra-04e73191d7a1b0bdf06fc107a034f0184410e345.tar.bz2
nix-infra-04e73191d7a1b0bdf06fc107a034f0184410e345.zip
snapshot: Di 15. Apr 23:50:00 CEST 2025
Diffstat (limited to 'srv')
-rw-r--r--srv/hadante/configuration.nix71
1 files changed, 40 insertions, 31 deletions
diff --git a/srv/hadante/configuration.nix b/srv/hadante/configuration.nix
index 948efd2..5d77826 100644
--- a/srv/hadante/configuration.nix
+++ b/srv/hadante/configuration.nix
@@ -2,7 +2,12 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
-{ config, pkgs, ... }:
+inputs@{
+ config,
+ pkgs,
+ customss,
+ ...
+}:
{
imports = [
@@ -138,44 +143,48 @@
];
- environment.systemPackages = with pkgs; [
- neovim
- atuin
- git
- zsh
- yadm
- openssl
- xxd
- pinentry-qt
- emacs
- atuin
+ environment.systemPackages = (
+ with pkgs;
+ [
+ neovim
+ atuin
+ git
+ zsh
+ yadm
+ openssl
+ xxd
+ pinentry-qt
+ emacs
+ atuin
- thunderbird
- sway
- webp-pixbuf-loader
- delta
- rofi
+ thunderbird
+ sway
+ webp-pixbuf-loader
+ delta
+ rofi
- wezterm
+ wezterm
- vesktop
- ripgrep
+ vesktop
+ ripgrep
- prismlauncher
- jdk8
- jdk17
- jdk21
- jdk23
+ prismlauncher
+ jdk8
+ jdk17
+ jdk21
+ jdk23
- sbctl
+ sbctl
- wl-clipboard
+ wl-clipboard
- jetbrains.idea-ultimate
+ jetbrains.idea-ultimate
- calibre
+ calibre
- electrum
+ electrum
- ];
+ myss
+ ]
+ );
}