feat: split private from swp config

main
mandlm 2024-02-08 13:48:37 +01:00
parent e32e6e7d86
commit c498035140
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
5 changed files with 18 additions and 3 deletions

View File

@ -60,7 +60,6 @@
}; };
programs = { programs = {
appgate-sdp.enable = true;
zsh.enable = true; zsh.enable = true;
gphoto2.enable = true; gphoto2.enable = true;
}; };

View File

@ -56,6 +56,7 @@
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
./configuration.nix ./configuration.nix
./swp/configuration.nix
./greetd.nix ./greetd.nix
./users.nix ./users.nix
./machines/apache/configuration.nix ./machines/apache/configuration.nix
@ -69,6 +70,7 @@
imports = [ imports = [
./home-${user}.nix ./home-${user}.nix
./machines/apache/home-${user}.nix ./machines/apache/home-${user}.nix
./swp/home-${user}.nix
]; ];
nixpkgs.config = nixpkgs-config; nixpkgs.config = nixpkgs-config;
nixpkgs.overlays = [ overlay-unstable ]; nixpkgs.overlays = [ overlay-unstable ];
@ -81,6 +83,7 @@
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
./configuration.nix ./configuration.nix
./swp/configuration.nix
./greetd.nix ./greetd.nix
./users.nix ./users.nix
./machines/p330/configuration.nix ./machines/p330/configuration.nix
@ -95,6 +98,7 @@
imports = [ imports = [
./home-${user}.nix ./home-${user}.nix
./machines/p330/home-${user}.nix ./machines/p330/home-${user}.nix
./swp/home-${user}.nix
]; ];
nixpkgs.config = nixpkgs-config; nixpkgs.config = nixpkgs-config;
nixpkgs.overlays = [ overlay-unstable ]; nixpkgs.overlays = [ overlay-unstable ];

View File

@ -17,14 +17,12 @@
gnumake gnumake
unzip unzip
gcc gcc
slack
thunderbird thunderbird
keepassxc keepassxc
tree tree
light light
element-desktop element-desktop
difftastic difftastic
zoom-us
darktable darktable
kubectl kubectl
kubectx kubectx

6
swp/configuration.nix Normal file
View File

@ -0,0 +1,6 @@
{ pkgs, lib, ... }:
{
programs.appgate-sdp.enable = true;
}

8
swp/home-mandlm.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
slack
zoom-us
];
}