feat: split private from swp config
This commit is contained in:
parent
e32e6e7d86
commit
c498035140
@ -60,7 +60,6 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
appgate-sdp.enable = true;
|
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
gphoto2.enable = true;
|
gphoto2.enable = true;
|
||||||
};
|
};
|
||||||
|
@ -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 ];
|
||||||
|
@ -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
6
swp/configuration.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{ pkgs, lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.appgate-sdp.enable = true;
|
||||||
|
}
|
||||||
|
|
8
swp/home-mandlm.nix
Normal file
8
swp/home-mandlm.nix
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
slack
|
||||||
|
zoom-us
|
||||||
|
];
|
||||||
|
}
|
Reference in New Issue
Block a user