feat: split private from swp config
parent
e32e6e7d86
commit
c498035140
|
@ -60,7 +60,6 @@
|
|||
};
|
||||
|
||||
programs = {
|
||||
appgate-sdp.enable = true;
|
||||
zsh.enable = true;
|
||||
gphoto2.enable = true;
|
||||
};
|
||||
|
|
|
@ -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 ];
|
||||
|
|
|
@ -17,14 +17,12 @@
|
|||
gnumake
|
||||
unzip
|
||||
gcc
|
||||
slack
|
||||
thunderbird
|
||||
keepassxc
|
||||
tree
|
||||
light
|
||||
element-desktop
|
||||
difftastic
|
||||
zoom-us
|
||||
darktable
|
||||
kubectl
|
||||
kubectx
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
programs.appgate-sdp.enable = true;
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
slack
|
||||
zoom-us
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue