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 = {
appgate-sdp.enable = true;
zsh.enable = true;
gphoto2.enable = true;
};

View File

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

View File

@ -17,14 +17,12 @@
gnumake
unzip
gcc
slack
thunderbird
keepassxc
tree
light
element-desktop
difftastic
zoom-us
darktable
kubectl
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
];
}