Renovate Bot
796bbc7a68
All checks were successful
flake / flake (push) Successful in 1m20s
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [nixpkgs](https://github.com/NixOS/nixpkgs) | major | `nixos-23.11` -> `nixos-24.05` | --- ### Release Notes <details> <summary>NixOS/nixpkgs (nixpkgs)</summary> ### [`vnixos-24.05`](https://github.com/NixOS/nixpkgs/compare/nixos-23.11...nixos-24.05) [Compare Source](https://github.com/NixOS/nixpkgs/compare/nixos-23.11...nixos-24.05) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNzQuMyIsInVwZGF0ZWRJblZlciI6IjM3LjM3NC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: Jake Hillion <jake@hillion.co.uk> Reviewed-on: #271 Co-authored-by: Renovate Bot <renovate-bot@noreply.gitea.hillion.co.uk> Co-committed-by: Renovate Bot <renovate-bot@noreply.gitea.hillion.co.uk>
89 lines
2.2 KiB
Nix
89 lines
2.2 KiB
Nix
{ config, pkgs, lib, ... }:
|
||
|
||
{
|
||
imports = [
|
||
./bluetooth.nix
|
||
./hardware-configuration.nix
|
||
];
|
||
|
||
config = {
|
||
system.stateVersion = "22.05";
|
||
|
||
networking.hostName = "gendry";
|
||
networking.domain = "jakehillion-terminals.ts.hillion.co.uk";
|
||
|
||
boot.loader.systemd-boot.enable = true;
|
||
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
||
custom.defaults = true;
|
||
|
||
## Impermanence
|
||
custom.impermanence = {
|
||
enable = true;
|
||
userExtraFiles.jake = [
|
||
".ssh/id_rsa"
|
||
".ssh/id_ecdsa"
|
||
];
|
||
userExtraDirs.jake = [
|
||
".local/share/PrismLauncher"
|
||
];
|
||
};
|
||
|
||
## Desktop
|
||
custom.users.jake.password = true;
|
||
custom.desktop.awesome.enable = true;
|
||
|
||
## Resilio
|
||
custom.resilio.enable = true;
|
||
|
||
services.resilio.deviceName = "gendry.jakehillion-terminals";
|
||
services.resilio.directoryRoot = "/data/sync";
|
||
services.resilio.storagePath = "/data/sync/.sync";
|
||
|
||
custom.resilio.folders =
|
||
let
|
||
folderNames = [
|
||
"dad"
|
||
"joseph"
|
||
"projects"
|
||
"resources"
|
||
"sync"
|
||
];
|
||
mkFolder = name: {
|
||
name = name;
|
||
secret = {
|
||
name = "resilio/plain/${name}";
|
||
file = ../../secrets/resilio/plain/${name}.age;
|
||
};
|
||
};
|
||
in
|
||
builtins.map (mkFolder) folderNames;
|
||
|
||
## Tailscale
|
||
age.secrets."tailscale/gendry.jakehillion-terminals.ts.hillion.co.uk".file = ../../secrets/tailscale/gendry.jakehillion-terminals.ts.hillion.co.uk.age;
|
||
services.tailscale = {
|
||
enable = true;
|
||
authKeyFile = config.age.secrets."tailscale/gendry.jakehillion-terminals.ts.hillion.co.uk".path;
|
||
};
|
||
|
||
security.sudo.wheelNeedsPassword = lib.mkForce true;
|
||
|
||
## Enable btrfs compression
|
||
fileSystems."/data".options = [ "compress=zstd" ];
|
||
fileSystems."/nix".options = [ "compress=zstd" ];
|
||
|
||
## Graphics
|
||
boot.initrd.kernelModules = [ "amdgpu" ];
|
||
services.xserver.videoDrivers = [ "amdgpu" ];
|
||
|
||
users.users."${config.custom.user}" = {
|
||
packages = with pkgs; [
|
||
prismlauncher
|
||
];
|
||
};
|
||
|
||
## Networking
|
||
networking.nameservers = lib.mkForce [ ]; # Trust the DHCP nameservers
|
||
};
|
||
}
|