1
0
Fork 0

Compare commits

..

No commits in common. "5129239a24154b1a60e427d8df8eb6fc168febb3" and "c99ad3d97addbe3fd4bd78ae7755e34bae596a46" have entirely different histories.

8 changed files with 25 additions and 64 deletions

36
flake.lock generated
View file

@ -8,11 +8,11 @@
},
"locked": {
"dir": "pkgs/firefox-addons",
"lastModified": 1747403139,
"narHash": "sha256-GpldCFeC+YP9m2xm1POByfT3+9J9/nwst0CYxvR85I0=",
"lastModified": 1747022610,
"narHash": "sha256-d6SvA0gTHDrOqt4tZRVD0Gm5G4w6jAFJ6lis79PjSPw=",
"owner": "rycee",
"repo": "nur-expressions",
"rev": "1ebb2cf654110901889353440027993312e1aeb0",
"rev": "d4b3ffe3e719e42b175ccdef13598516f0a8025d",
"type": "gitlab"
},
"original": {
@ -118,11 +118,11 @@
]
},
"locked": {
"lastModified": 1747427366,
"narHash": "sha256-c3UfEsnT94bt6ta1VELYQhAWkQWFGlB+7DmBmthlGGg=",
"lastModified": 1747021744,
"narHash": "sha256-IDsM/9/tHQBlhG3tXI2fTM84AUN1uRa7JDPT1LMlGes=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "74d31e1165341bf510ee2017841a599f5cfc1608",
"rev": "fb061f555f821fe4fb49f8f6f2a0cc3d5728bd52",
"type": "github"
},
"original": {
@ -174,11 +174,11 @@
},
"nixos-hardware": {
"locked": {
"lastModified": 1747129300,
"narHash": "sha256-L3clA5YGeYCF47ghsI7Tcex+DnaaN/BbQ4dR2wzoiKg=",
"lastModified": 1746814339,
"narHash": "sha256-hf2lICJzwACWuzHCmZn5NI6LUAOgGdR1yh8ip+duyhk=",
"owner": "nixos",
"repo": "nixos-hardware",
"rev": "e81fd167b33121269149c57806599045fd33eeed",
"rev": "3c5e12673265dfb0de3d9121420c0c2153bf21e0",
"type": "github"
},
"original": {
@ -189,11 +189,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1747179050,
"narHash": "sha256-qhFMmDkeJX9KJwr5H32f1r7Prs7XbQWtO0h3V0a0rFY=",
"lastModified": 1746904237,
"narHash": "sha256-3e+AVBczosP5dCLQmMoMEogM57gmZ2qrVSrmq9aResQ=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "adaa24fbf46737f3f1b5497bf64bae750f82942e",
"rev": "d89fc19e405cb2d55ce7cc114356846a0ee5e956",
"type": "github"
},
"original": {
@ -260,11 +260,11 @@
"systems": "systems_2"
},
"locked": {
"lastModified": 1747389489,
"narHash": "sha256-PN5lxjC+Oh4oANayNRN0deD4F8N5yZ1Zw+NI9SfQt80=",
"lastModified": 1746940940,
"narHash": "sha256-ASB3QVEoFK5//280uedYdt8jyDLhFa9zgj8qfc0S7Sk=",
"owner": "notashelf",
"repo": "nvf",
"rev": "74587e254ac7f8f7a7eca58aede14badde20dee6",
"rev": "815ed49d3693346122ef61da6d7443cd3cc21752",
"type": "github"
},
"original": {
@ -373,11 +373,11 @@
},
"stable": {
"locked": {
"lastModified": 1747209494,
"narHash": "sha256-fLise+ys+bpyjuUUkbwqo5W/UyIELvRz9lPBPoB0fbM=",
"lastModified": 1746810718,
"narHash": "sha256-VljtYzyttmvkWUKTVJVW93qAsJsrBbgAzy7DdnJaQfI=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "5d736263df906c5da72ab0f372427814de2f52f8",
"rev": "0c0bf9c057382d5f6f63d54fd61f1abd5e1c2f63",
"type": "github"
},
"original": {

View file

@ -20,8 +20,7 @@ let
cursor_shape = "Beam";
};
defaultFont = {
name = "Hack Nerd Font Mono";
package = pkgs.nerd-fonts.hack;
name = "Hack Nerd Font";
size = 12;
};
in
@ -34,10 +33,7 @@ in
};
config = mkIf cfg.enable {
home.packages = [
pkgs.kitty-themes
defaultFont.package
]; # fc-cache -fv clear fontconfig when error
home.packages = [ pkgs.kitty-themes ];
programs.kitty = {
enable = true;
themeFile = "tokyo_night_night";

View file

@ -48,7 +48,6 @@ in
kdiskmark
networkmanager
kdePackages.networkmanager-qt
kdePackages.wallpaper-engine-plugin
];
};

View file

@ -53,7 +53,6 @@ in
check = it: lib.isString it && lib.types.path.check it;
};
example = "/run/secrets/linkwarden";
default = "/run/secrets/linkwarden";
description = ''
Path of a file with extra environment variables to be loaded from disk.
This file is not added to the nix store, so it can be used to pass secrets to linkwarden.

View file

@ -1,25 +0,0 @@
{
config,
lib,
namespace,
...
}:
with lib;
with lib.${namespace};
let
cfg = config.${namespace}.system.tmpfs;
in
{
options.${namespace}.system.tmpfs = with types; {
enable = mkBoolOpt false "Whether or not to use tmpfs for /tmp.";
};
config = mkIf cfg.enable {
boot.tmp = {
cleanOnBoot = true;
tmpfsSize = "50%";
useTmpfs = true;
};
};
}

View file

@ -56,17 +56,16 @@ with lib.${namespace};
cinny = enabled;
ente-auth = enabled;
restic = enabled;
linkwarden = enabled;
linkwarden = {
enable = true;
secretsFile = "/run/secrets/linkwarden";
};
forgejo = enabled;
};
#container.invidious = enabled;
system = {
sops = enabled;
tmpfs = enabled;
};
system.sops = enabled;
cli.neovim = enabled;
};

View file

@ -71,7 +71,6 @@ with lib.${namespace};
};
system = {
tmpfs = enabled;
fonts = {
enable = true;
emoji = true;

View file

@ -39,14 +39,8 @@ with lib.${namespace};
eza = enabled;
nh = enabled;
};
system.tmpfs = true;
};
environment.systemPackages = with pkgs; [
git
];
# Set your time zone
time.timeZone = "Europe/Berlin";