Compare commits
4 commits
93a3f892a2
...
bdf5908d65
Author | SHA1 | Date | |
---|---|---|---|
bdf5908d65 | |||
7163022eda | |||
a6ec1cf879 | |||
79ab4ca237 |
4 changed files with 19 additions and 13 deletions
20
flake.lock
generated
20
flake.lock
generated
|
@ -122,11 +122,11 @@
|
||||||
"nixpkgs-stable": "nixpkgs-stable"
|
"nixpkgs-stable": "nixpkgs-stable"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1742375190,
|
"lastModified": 1742482542,
|
||||||
"narHash": "sha256-VUgnonsWVske8KTAhKds4fBlLmWg0X0GMgVd6zKQR4I=",
|
"narHash": "sha256-NAPwBExg92Ifz0ItaY4nEduXmY8mt4bYq/purmK+T6M=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "emacs-overlay",
|
"repo": "emacs-overlay",
|
||||||
"rev": "f3fe04dd81fa25496e9b27e3fda96d08ccbfc275",
|
"rev": "2600d9324f1235740233313b9a8cec81d8f2db4b",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -387,11 +387,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1742326330,
|
"lastModified": 1742447757,
|
||||||
"narHash": "sha256-Tumt3tcMXJniSh7tw2gW+WAnVLeB3WWm+E+yYFnLBXo=",
|
"narHash": "sha256-Q0KXcHQmum8L6IzGhhkVhjFMKY6BvYa/rhmLP26Ws8o=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "22a36aa709de7dd42b562a433b9cefecf104a6ee",
|
"rev": "94605dcadefeaff6b35c8931c9f38e4f4dc7ad0a",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -464,11 +464,11 @@
|
||||||
"lix": {
|
"lix": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1742328220,
|
"lastModified": 1742411066,
|
||||||
"narHash": "sha256-oRRKctwO4s4auyXPQkf8OM94Kuvh678ZL+HGFKnDKuQ=",
|
"narHash": "sha256-8vXOKPQFRzTjapsRnTJ1nuFjUfC+AGI2ybdK5cAEHZ8=",
|
||||||
"ref": "refs/heads/main",
|
"ref": "refs/heads/main",
|
||||||
"rev": "3fcf823a86ab9e5bf4ccc9a3cca960c1f9137e6a",
|
"rev": "2491b7cc2128ee440d24768c4521c38b1859fc28",
|
||||||
"revCount": 17704,
|
"revCount": 17705,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git@git.lix.systems/lix-project/lix"
|
"url": "https://git@git.lix.systems/lix-project/lix"
|
||||||
},
|
},
|
||||||
|
|
|
@ -63,7 +63,7 @@ in
|
||||||
};
|
};
|
||||||
profiles.default = {
|
profiles.default = {
|
||||||
search.force = true;
|
search.force = true;
|
||||||
search.default = "DuckDuckGo";
|
search.default = "Google";
|
||||||
search.engines = {
|
search.engines = {
|
||||||
"Searx" = {
|
"Searx" = {
|
||||||
urls = [
|
urls = [
|
||||||
|
|
|
@ -18,7 +18,10 @@
|
||||||
nixpkgs.config.allowUnfree = true; # Forgive me Mr. Stallman :(
|
nixpkgs.config.allowUnfree = true; # Forgive me Mr. Stallman :(
|
||||||
system.switch.enableNg = true;
|
system.switch.enableNg = true;
|
||||||
|
|
||||||
environment.systemPackages = [ pkgs.btop ];
|
environment.systemPackages = [
|
||||||
|
pkgs.btop
|
||||||
|
pkgs.ncdu
|
||||||
|
];
|
||||||
|
|
||||||
# FIXME not the best place
|
# FIXME not the best place
|
||||||
nixpkgs.config.permittedInsecurePackages = [
|
nixpkgs.config.permittedInsecurePackages = [
|
||||||
|
|
|
@ -70,7 +70,10 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
secrets.mailer.PASSWD = config.age.secrets.autistici-password.path;
|
secrets.mailer.PASSWD = config.age.secrets.autistici-password.path;
|
||||||
dump.enable = true;
|
dump = {
|
||||||
|
enable = true;
|
||||||
|
backupDir = "/mnt/hd/forgejo-dumps";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.persistence."/persist".directories = [
|
environment.persistence."/persist".directories = [
|
||||||
|
|
Loading…
Add table
Reference in a new issue