give copyparty access to archives
This commit is contained in:
@@ -58,7 +58,7 @@ in {
|
|||||||
home = cfg.data_dir;
|
home = cfg.data_dir;
|
||||||
createHome = true;
|
createHome = true;
|
||||||
group = service;
|
group = service;
|
||||||
extraGroups = [ "media" "blake" ];
|
extraGroups = [ "media" "blake" "archives" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
# enable the ${service} service
|
# enable the ${service} service
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
users = {
|
users = {
|
||||||
"blake" = import ./dots/bundles/snowbelle.nix;
|
"blake" = import ./home.nix;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,8 @@
|
|||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
|
|
||||||
platform = if pkgs.system == "x86_64-darwin" then "darwin" else "nixos";
|
#platform = if pkgs.stdenv.hostPlatform.system == "x86_64-darwin" then "darwin" else "nixos";
|
||||||
|
platform = if builtins.pathExists "/System/Library/CoreServices" then "darwin" else "nixos";
|
||||||
|
|
||||||
# general config
|
# general config
|
||||||
home_linux = {
|
home_linux = {
|
||||||
@@ -22,7 +23,8 @@ in
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
./os/${platform}
|
./os/${platform}.nix
|
||||||
|
#./os/nixos.nix
|
||||||
./dots/neovim
|
./dots/neovim
|
||||||
./dots/lf
|
./dots/lf
|
||||||
./dots/zsh
|
./dots/zsh
|
||||||
|
|||||||
@@ -8,10 +8,10 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../home.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
htop
|
htop
|
||||||
|
sl
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user