Standardize more paths and such
This commit is contained in:
parent
dbd5ea69cd
commit
def300827a
5 changed files with 12 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, nur, ... }:
|
||||
{ lib, ... }:
|
||||
{
|
||||
imports = [
|
||||
./files
|
||||
|
@ -8,7 +8,6 @@
|
|||
./user
|
||||
./variables
|
||||
./wms
|
||||
nur.modules.homeManager.default
|
||||
];
|
||||
|
||||
options.home = with lib; {
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
{ ... }:
|
||||
{ nur, ... }:
|
||||
{
|
||||
imports = [
|
||||
./gui
|
||||
./terminal
|
||||
./misc
|
||||
nur.modules.homeManager.default
|
||||
];
|
||||
}
|
||||
|
|
|
@ -6,6 +6,9 @@
|
|||
qbittorrent
|
||||
vesktop
|
||||
];
|
||||
persistence."/persist${config.home.homeDirectory}".directories = [ ".config/vesktop" ];
|
||||
persistence."/persist${config.home.homeDirectory}".directories = [
|
||||
".config/qBittorrent"
|
||||
".config/vesktop"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
options.nixpkgs.allowUnfreePackages = lib.mkOption {
|
||||
type = with lib.types; listOf str;
|
||||
with lib; {
|
||||
options.nixpkgs.allowUnfreePackages = mkOption {
|
||||
type = types.listOf types.str;
|
||||
default = [];
|
||||
};
|
||||
|
||||
config.nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) config.nixpkgs.allowUnfreePackages;
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
};
|
||||
service = {
|
||||
REGISTER_EMAIL_CONFIRM = true;
|
||||
DISABLE_REGISTRATION = false;
|
||||
DISABLE_REGISTRATION = true;
|
||||
};
|
||||
ui.DEFAULT_THEME = "forgejo-dark";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue