Compare commits
2 commits
c8ac1786bd
...
2492aa98de
Author | SHA1 | Date | |
---|---|---|---|
|
2492aa98de | ||
|
6d6a97e758 |
18 changed files with 48 additions and 42 deletions
|
@ -11,13 +11,6 @@ repos:
|
||||||
|
|
||||||
- repo: local
|
- repo: local
|
||||||
hooks:
|
hooks:
|
||||||
- id: nix-fmt
|
|
||||||
name: Check nix formatting
|
|
||||||
entry: nix fmt
|
|
||||||
language: system
|
|
||||||
files: .*\.nix$
|
|
||||||
stages: [pre-commit]
|
|
||||||
|
|
||||||
- id: prettier
|
- id: prettier
|
||||||
name: Check css, scss, js, ts and yaml formatting
|
name: Check css, scss, js, ts and yaml formatting
|
||||||
entry: prettier
|
entry: prettier
|
||||||
|
@ -41,3 +34,19 @@ repos:
|
||||||
files: .+\.nix$
|
files: .+\.nix$
|
||||||
args: ["-e", "-l"]
|
args: ["-e", "-l"]
|
||||||
stages: [pre-commit]
|
stages: [pre-commit]
|
||||||
|
|
||||||
|
- id: statix
|
||||||
|
name: Lint nix code
|
||||||
|
entry: statix
|
||||||
|
language: system
|
||||||
|
files: .+\.nix$
|
||||||
|
pass_filenames: false
|
||||||
|
args: [fix]
|
||||||
|
stages: [pre-commit]
|
||||||
|
|
||||||
|
- id: nix-fmt
|
||||||
|
name: Check nix formatting
|
||||||
|
entry: nix fmt
|
||||||
|
language: system
|
||||||
|
files: .*\.nix$
|
||||||
|
stages: [pre-commit]
|
||||||
|
|
|
@ -75,6 +75,7 @@
|
||||||
nodePackages.prettier
|
nodePackages.prettier
|
||||||
typos
|
typos
|
||||||
deadnix
|
deadnix
|
||||||
|
statix
|
||||||
inputs'.agenix.packages.default
|
inputs'.agenix.packages.default
|
||||||
];
|
];
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ ... }:
|
_: {
|
||||||
{
|
|
||||||
programs.thunderbird = {
|
programs.thunderbird = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
@ -9,8 +9,8 @@ let
|
||||||
inherit (lib) mapAttrsToList mkIf hasAttr;
|
inherit (lib) mapAttrsToList mkIf hasAttr;
|
||||||
inherit (lib.my) getExe getExe';
|
inherit (lib.my) getExe getExe';
|
||||||
|
|
||||||
roles = osConfig.modules.system.roles;
|
inherit (osConfig.modules.system) roles;
|
||||||
desktop = osConfig.modules.system.roles.desktop;
|
inherit (osConfig.modules.system.roles) desktop;
|
||||||
in
|
in
|
||||||
mkIf osConfig.programs.hyprland.enable {
|
mkIf osConfig.programs.hyprland.enable {
|
||||||
home.sessionVariables.ELECTRON_OZONE_PLATFORM_HINT = "auto";
|
home.sessionVariables.ELECTRON_OZONE_PLATFORM_HINT = "auto";
|
||||||
|
|
|
@ -10,7 +10,7 @@ let
|
||||||
inherit (lib) mapAttrs mkIf;
|
inherit (lib) mapAttrs mkIf;
|
||||||
inherit (lib.my) getExe getExe';
|
inherit (lib.my) getExe getExe';
|
||||||
|
|
||||||
desktop = osConfig.modules.system.roles.desktop;
|
inherit (osConfig.modules.system.roles) desktop;
|
||||||
term = getExe desktop.terminal;
|
term = getExe desktop.terminal;
|
||||||
filemanager = getExe desktop.filemanager;
|
filemanager = getExe desktop.filemanager;
|
||||||
cliphistEnabled = osConfig.modules.services.cliphist.enable;
|
cliphistEnabled = osConfig.modules.services.cliphist.enable;
|
||||||
|
|
|
@ -9,10 +9,10 @@
|
||||||
(final: prev: {
|
(final: prev: {
|
||||||
scripts = import ../scripts {
|
scripts = import ../scripts {
|
||||||
inherit lib config;
|
inherit lib config;
|
||||||
pkgs = prev.pkgs;
|
inherit (prev) pkgs;
|
||||||
};
|
};
|
||||||
|
|
||||||
nysh = inputs'.nysh.packages.nysh;
|
inherit (inputs'.nysh.packages) nysh;
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@ let
|
||||||
inherit (pkgs.writers) writeFishBin writeBashBin;
|
inherit (pkgs.writers) writeFishBin writeBashBin;
|
||||||
inherit (lib.my) getExe;
|
inherit (lib.my) getExe;
|
||||||
|
|
||||||
runner = config.modules.system.roles.desktop.runner;
|
inherit (config.modules.system.roles.desktop) runner;
|
||||||
|
|
||||||
nixos-rebuild =
|
nixos-rebuild =
|
||||||
name: word:
|
name: word:
|
||||||
|
|
|
@ -20,7 +20,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
settings = lib.mkOption {
|
settings = lib.mkOption {
|
||||||
type = settingsFormat.type;
|
inherit (settingsFormat) type;
|
||||||
default = { };
|
default = { };
|
||||||
example = {
|
example = {
|
||||||
globalSection = {
|
globalSection = {
|
||||||
|
|
|
@ -45,7 +45,7 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
settings = options.services.navidrome.settings;
|
inherit (options.services.navidrome) settings;
|
||||||
restartPolicy = mkOption {
|
restartPolicy = mkOption {
|
||||||
type = str;
|
type = str;
|
||||||
default = "always";
|
default = "always";
|
||||||
|
@ -60,7 +60,7 @@ in
|
||||||
fileSystems.${cfg.library.path} = mkIf (cfg.library.type == "nfs") {
|
fileSystems.${cfg.library.path} = mkIf (cfg.library.type == "nfs") {
|
||||||
device = "${cfg.library.source.ip}:${cfg.library.source.path}";
|
device = "${cfg.library.source.ip}:${cfg.library.source.path}";
|
||||||
fsType = "nfs";
|
fsType = "nfs";
|
||||||
options = cfg.library.source.options;
|
inherit (cfg.library.source) options;
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.tmpfiles.rules = mkIf (cfg.library.type == "nfs") [
|
systemd.tmpfiles.rules = mkIf (cfg.library.type == "nfs") [
|
||||||
|
|
|
@ -22,7 +22,7 @@ in
|
||||||
description = "Whether the port should be publicly accessible.";
|
description = "Whether the port should be publicly accessible.";
|
||||||
type = bool;
|
type = bool;
|
||||||
};
|
};
|
||||||
settings = options.services.paperless.settings;
|
inherit (options.services.paperless) settings;
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
|
@ -134,7 +134,7 @@ in
|
||||||
users.users = mkIf (cfg.user == "rustypaste") {
|
users.users = mkIf (cfg.user == "rustypaste") {
|
||||||
rustypaste = {
|
rustypaste = {
|
||||||
useDefaultShell = true;
|
useDefaultShell = true;
|
||||||
group = cfg.group;
|
inherit (cfg) group;
|
||||||
isSystemUser = true;
|
isSystemUser = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -85,7 +85,7 @@ in
|
||||||
|
|
||||||
port = mkOption {
|
port = mkOption {
|
||||||
type = port;
|
type = port;
|
||||||
default = options.modules.server.rsync-daemon.port.default;
|
inherit (options.modules.server.rsync-daemon.port) default;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -15,22 +15,19 @@ let
|
||||||
;
|
;
|
||||||
|
|
||||||
cfg = config.modules.system.users;
|
cfg = config.modules.system.users;
|
||||||
file = submodule (
|
file = submodule (_: {
|
||||||
{ ... }:
|
options = {
|
||||||
{
|
path = mkOption {
|
||||||
options = {
|
type = either package null;
|
||||||
path = mkOption {
|
default = null;
|
||||||
type = either package null;
|
|
||||||
default = null;
|
|
||||||
};
|
|
||||||
|
|
||||||
content = mkOption {
|
|
||||||
type = either str null;
|
|
||||||
default = null;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
|
||||||
);
|
content = mkOption {
|
||||||
|
type = either str null;
|
||||||
|
default = null;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
});
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.modules.system.users = mkOption {
|
options.modules.system.users = mkOption {
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
my = import ./functions.nix {
|
my = import ./functions.nix {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
lib = self;
|
lib = self;
|
||||||
self = args.self;
|
inherit (args) self;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
@ -112,7 +112,7 @@ in
|
||||||
|
|
||||||
disko = {
|
disko = {
|
||||||
mkBoot = size: {
|
mkBoot = size: {
|
||||||
size = size;
|
inherit size;
|
||||||
type = "EF00";
|
type = "EF00";
|
||||||
content = {
|
content = {
|
||||||
type = "filesystem";
|
type = "filesystem";
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
devShell = pkgs.mkShell { buildInputs = with pkgs; [ ]; };
|
devShell = pkgs.mkShell { buildInputs = with pkgs; [ ]; };
|
||||||
|
|
||||||
packages.${system} = {
|
packages.${system} = {
|
||||||
hello = pkgs.hello;
|
inherit (pkgs) hello;
|
||||||
default = self.packages.hello;
|
default = self.packages.hello;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,12 +30,12 @@
|
||||||
|
|
||||||
rustBuild = rustPlatform.buildRustPackage {
|
rustBuild = rustPlatform.buildRustPackage {
|
||||||
inherit pname;
|
inherit pname;
|
||||||
version = manifest.version;
|
inherit (manifest) version;
|
||||||
src = ./.;
|
src = ./.;
|
||||||
cargoLock.lockFile = ./Cargo.lock;
|
cargoLock.lockFile = ./Cargo.lock;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = manifest.description;
|
inherit (manifest) description;
|
||||||
#license = nixpkgs.lib.licenses.unlicense;
|
#license = nixpkgs.lib.licenses.unlicense;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,7 +4,7 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
rum.programs.fuzzel = {
|
rum.programs.fuzzel = {
|
||||||
enable = desktop.enable;
|
inherit (desktop) enable;
|
||||||
settings = {
|
settings = {
|
||||||
main = {
|
main = {
|
||||||
icon-theme = "Papirus-Dark";
|
icon-theme = "Papirus-Dark";
|
||||||
|
|
Loading…
Add table
Reference in a new issue