Compare commits

..

No commits in common. "2492aa98defcd57b59b74d14a0fa06529fc77f6f" and "c8ac1786bdca16c87db42db6a4c81980f6165d6c" have entirely different histories.

18 changed files with 41 additions and 47 deletions

View file

@ -11,6 +11,13 @@ repos:
- repo: local
hooks:
- id: nix-fmt
name: Check nix formatting
entry: nix fmt
language: system
files: .*\.nix$
stages: [pre-commit]
- id: prettier
name: Check css, scss, js, ts and yaml formatting
entry: prettier
@ -34,19 +41,3 @@ repos:
files: .+\.nix$
args: ["-e", "-l"]
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]

View file

@ -75,7 +75,6 @@
nodePackages.prettier
typos
deadnix
statix
inputs'.agenix.packages.default
];
shellHook = ''

View file

@ -1,4 +1,5 @@
_: {
{ ... }:
{
programs.thunderbird = {
enable = true;
settings = {

View file

@ -9,8 +9,8 @@ let
inherit (lib) mapAttrsToList mkIf hasAttr;
inherit (lib.my) getExe getExe';
inherit (osConfig.modules.system) roles;
inherit (osConfig.modules.system.roles) desktop;
roles = osConfig.modules.system.roles;
desktop = osConfig.modules.system.roles.desktop;
in
mkIf osConfig.programs.hyprland.enable {
home.sessionVariables.ELECTRON_OZONE_PLATFORM_HINT = "auto";

View file

@ -10,7 +10,7 @@ let
inherit (lib) mapAttrs mkIf;
inherit (lib.my) getExe getExe';
inherit (osConfig.modules.system.roles) desktop;
desktop = osConfig.modules.system.roles.desktop;
term = getExe desktop.terminal;
filemanager = getExe desktop.filemanager;
cliphistEnabled = osConfig.modules.services.cliphist.enable;

View file

@ -9,10 +9,10 @@
(final: prev: {
scripts = import ../scripts {
inherit lib config;
inherit (prev) pkgs;
pkgs = prev.pkgs;
};
inherit (inputs'.nysh.packages) nysh;
nysh = inputs'.nysh.packages.nysh;
})
];
}

View file

@ -8,7 +8,7 @@ let
inherit (pkgs.writers) writeFishBin writeBashBin;
inherit (lib.my) getExe;
inherit (config.modules.system.roles.desktop) runner;
runner = config.modules.system.roles.desktop.runner;
nixos-rebuild =
name: word:

View file

@ -20,7 +20,7 @@ in
};
settings = lib.mkOption {
inherit (settingsFormat) type;
type = settingsFormat.type;
default = { };
example = {
globalSection = {

View file

@ -45,7 +45,7 @@ in
};
};
};
inherit (options.services.navidrome) settings;
settings = options.services.navidrome.settings;
restartPolicy = mkOption {
type = str;
default = "always";
@ -60,7 +60,7 @@ in
fileSystems.${cfg.library.path} = mkIf (cfg.library.type == "nfs") {
device = "${cfg.library.source.ip}:${cfg.library.source.path}";
fsType = "nfs";
inherit (cfg.library.source) options;
options = cfg.library.source.options;
};
systemd.tmpfiles.rules = mkIf (cfg.library.type == "nfs") [

View file

@ -22,7 +22,7 @@ in
description = "Whether the port should be publicly accessible.";
type = bool;
};
inherit (options.services.paperless) settings;
settings = options.services.paperless.settings;
};
config = mkIf cfg.enable {

View file

@ -134,7 +134,7 @@ in
users.users = mkIf (cfg.user == "rustypaste") {
rustypaste = {
useDefaultShell = true;
inherit (cfg) group;
group = cfg.group;
isSystemUser = true;
};
};

View file

@ -85,7 +85,7 @@ in
port = mkOption {
type = port;
inherit (options.modules.server.rsync-daemon.port) default;
default = options.modules.server.rsync-daemon.port.default;
};
};

View file

@ -15,19 +15,22 @@ let
;
cfg = config.modules.system.users;
file = submodule (_: {
options = {
path = mkOption {
type = either package null;
default = null;
};
file = submodule (
{ ... }:
{
options = {
path = mkOption {
type = either package null;
default = null;
};
content = mkOption {
type = either str null;
default = null;
content = mkOption {
type = either str null;
default = null;
};
};
};
});
}
);
in
{
options.modules.system.users = mkOption {

View file

@ -5,7 +5,7 @@
my = import ./functions.nix {
inherit inputs;
lib = self;
inherit (args) self;
self = args.self;
};
}
);

View file

@ -112,7 +112,7 @@ in
disko = {
mkBoot = size: {
inherit size;
size = size;
type = "EF00";
content = {
type = "filesystem";

View file

@ -21,7 +21,7 @@
devShell = pkgs.mkShell { buildInputs = with pkgs; [ ]; };
packages.${system} = {
inherit (pkgs) hello;
hello = pkgs.hello;
default = self.packages.hello;
};
}

View file

@ -30,12 +30,12 @@
rustBuild = rustPlatform.buildRustPackage {
inherit pname;
inherit (manifest) version;
version = manifest.version;
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
meta = {
inherit (manifest) description;
description = manifest.description;
#license = nixpkgs.lib.licenses.unlicense;
maintainers = [ ];
};

View file

@ -4,7 +4,7 @@ let
in
{
rum.programs.fuzzel = {
inherit (desktop) enable;
enable = desktop.enable;
settings = {
main = {
icon-theme = "Papirus-Dark";