nix: make configurations self sufficient

This commit is contained in:
Primrose 2025-03-24 17:03:04 +01:00
parent 2c59fe5342
commit f710f7cef9
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
3 changed files with 10 additions and 8 deletions

View file

@ -1,5 +1,7 @@
{self, ...}: let
let
system = "x86_64-linux";
self = import ../../../default.nix {};
in
###
### module below
@ -30,6 +32,7 @@ in
pkgs.pastebinit # for sharing cli output & debugging
pkgs.hdparm # to ATA secure wipe disks
pkgs.btop
pkgs.just # run my helpers
];
networking.firewall.allowedTCPPorts = [8080]; # in case you wanna nc
users.users.nixos.shell = pkgs.fish;