Router disko config

This commit is contained in:
Daniel Flanagan 2024-07-13 14:41:30 -05:00
parent fc7a7355ea
commit 8bb731e21c
2 changed files with 7 additions and 5 deletions

View file

@ -329,7 +329,7 @@
router = nixpkgs.lib.nixosSystem { router = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = with nixosModules; [ modules = with nixosModules; [
# outputs.diskoConfigurations.unencrypted outputs.diskoConfigurations.unencrypted
common common
./nixos/router.nix ./nixos/router.nix
]; ];

View file

@ -161,9 +161,10 @@
}; };
password-manager = {pkgs, ...}: { password-manager = {pkgs, ...}: {
programs.goldwarden = { # programs.goldwarden = {
enable = true; # NOTE: This didn't seem to work for me, but would be awesome!
}; # enable = true;
# };
home-manager.users.daniel = { home-manager.users.daniel = {
imports = with homeManagerModules; [ imports = with homeManagerModules; [
@ -238,6 +239,7 @@
imports = with nixosModules; [ imports = with nixosModules; [
postgres postgres
podman podman
troubleshooting-tools
]; ];
environment.sessionVariables.NIXOS_OZONE_WL = "1"; environment.sessionVariables.NIXOS_OZONE_WL = "1";
@ -334,6 +336,7 @@
bottom bottom
nmap nmap
dogdns dogdns
inetutils
dnsutils dnsutils
]; ];
}; };
@ -342,7 +345,6 @@
imports = with nixosModules; [ imports = with nixosModules; [
plasma6 plasma6
fonts fonts
troubleshooting-tools
development-tools development-tools
printing printing
]; ];