Compare commits

..

26 commits

Author SHA1 Message Date
Leonardo Eugênio 1218a525bf home: disable nextcloud client 2024-04-08 20:58:45 -03:00
Leonardo Eugênio 6cf8adb601 monolith: add forgejo runner 2024-04-07 02:48:42 -03:00
Leonardo Eugênio f1e560af3f sshd: disable until xz is secure 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 852a64230b sway: add more env vars to dbus activation 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 34f4363a6a flake: update lockfile 2024-04-07 02:48:42 -03:00
Leonardo Eugênio bf6a61cfcc syncthing: way for tray 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 3ec370e9fa kdenlive: fix theme 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 275a35b26b theme: improve qt theming 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 709fd99cd5 syncthing: enable tray icon 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 41365cfcbc mangohud: install patch to fix keybind crash 2024-04-07 02:48:42 -03:00
Leonardo Eugênio ca3dd19bc1 gpg: simplify config 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 4100cd971d update 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 1578e4aed2 lsp: replace rnix-lsp with nil 2024-04-07 02:48:42 -03:00
Leonardo Eugênio cff8bc56e6 update 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 155cd5e435 btop: enable gpu monitoring 2024-04-07 02:48:42 -03:00
Leonardo Eugênio fd4ff9541d update 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 88188ed8ed kak-lsp: update config to new format 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 45543af5c1 alacritty: update config 2024-04-07 02:48:42 -03:00
Leonardo Eugênio fc2bd159b2 update renamed xkb config 2024-04-07 02:48:42 -03:00
Leonardo Eugênio c28446043a update 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 5dd53fb230 update 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 03c5c7d6b6 update 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 0cd2e5bcd3 sway: disable adaptive sync 2024-04-07 02:48:42 -03:00
Leonardo Eugênio 475cc684d8 update 2024-04-07 02:48:42 -03:00
Leonardo Eugênio a22d387492 update 2024-04-07 02:48:42 -03:00
Leonardo Eugênio fde9f66023 switch to nixpkgs unstable 2024-04-07 02:48:42 -03:00
5 changed files with 10 additions and 33 deletions

View file

@ -1201,15 +1201,15 @@
"locked": {
"lastModified": 1684504342,
"narHash": "sha256-rJ0eH7BuPizvXPc+LjVtovse4gWEuxP2WiyNdXjPNL4=",
"ref": "refs/heads/main",
"owner": "lelgenio",
"repo": "tlauncher-nix",
"rev": "add4df7220bd0b85177a1938c02b60c966c5eb71",
"revCount": 3,
"type": "git",
"url": "https://git.lelgenio.xyz/lelgenio/tlauncher-nix"
"type": "github"
},
"original": {
"type": "git",
"url": "https://git.lelgenio.xyz/lelgenio/tlauncher-nix"
"owner": "lelgenio",
"repo": "tlauncher-nix",
"type": "github"
}
},
"utils": {

View file

@ -42,7 +42,7 @@
};
tlauncher = {
url = "git+https://git.lelgenio.xyz/lelgenio/tlauncher-nix";
url = "github:lelgenio/tlauncher-nix";
inputs.nixpkgs.follows = "nixpkgs";
};

View file

@ -15,24 +15,6 @@
./forgejo.nix
];
services.nginx.virtualHosts."lelgenio.xyz" = {
enableACME = true;
forceSSL = true;
root = pkgs.runCommand "www-dir" { } ''
mkdir -p $out
cat > $out/index.html <<EOF
<!DOCTYPE html>
<html lang="en">
<body>
<h1>
Nothing to see here!
<h1>
</body>
</html>
EOF
'';
};
# # Enable networking
# networking.networkmanager.enable = true;
# Set your time zone.
@ -51,7 +33,7 @@
dates = "04:40";
operation = "switch";
flags = [ "--update-input" "nixpkgs" "--no-write-lock-file" "-L" ];
flake = "git+https://git.lelgenio.xyz/lelgenio/nixos-config#phantom";
flake = "github:lelgenio/nixos-config#phantom";
};
system.stateVersion = "23.05"; # Never change this

View file

@ -8,7 +8,7 @@
mailserver = {
enable = true;
fqdn = "lelgenio.xyz";
fqdn = "mail.lelgenio.xyz";
domains = [
"lelgenio.xyz"
"git.lelgenio.xyz"
@ -36,7 +36,7 @@
$config['smtp_host'] = "tls://${hostName}:587";
$config['smtp_user'] = "%u";
$config['smtp_pass'] = "%p";
$config['plugins'] = [ "carddav", "archive" ];
$config['plugins'] = [ "carddav" ];
'';
};

View file

@ -9,11 +9,6 @@
};
};
services.nginx.virtualHosts.${config.services.nextcloud.hostName} = {
forceSSL = true;
enableACME = true;
};
age = {
secrets.phantom-nextcloud = {
file = ../../secrets/phantom-nextcloud.age;