Update riva

This commit is contained in:
Thomas Avé 2026-06-29 11:05:21 +02:00
parent aadff75141
commit 90c3065c00
4 changed files with 14 additions and 35 deletions

View File

@ -111,11 +111,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1782103446, "lastModified": 1782702263,
"narHash": "sha256-+vMR3KPBVoY9nJrQI9qje5H1vmv51dJgMYkUuYimtJg=", "narHash": "sha256-8/MG4Su7PhnynrmsVO61IeAfrK7GuUEu+E+gwbhy1QQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "d8dac1f668fd861369571be3678ec75b1573e7e3", "rev": "789a35fbdeb3c46b260096daa0b321c11be527ea",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -163,11 +163,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1781577229, "lastModified": 1782467914,
"narHash": "sha256-lrp67w8AulE9Ks53n27I45ADSzbOCn4H+CNW1Ck8B+8=", "narHash": "sha256-pGvFkM8N0xEkIIXDe5YYfbEAvHrk4IxBrjB/x8OomhE=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "567a49d1913ce81ac6e9582e3553dd90a955875f", "rev": "e73de5be04e0eff4190a1432b946d469c794e7b4",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -1,5 +1,4 @@
{ {
inputs,
config, config,
pkgs, pkgs,
... ...
@ -12,28 +11,13 @@
dirs = [ dirs = [
"/home/user/.dotfiles" "/home/user/.dotfiles"
"/home/server/.cache/fzgo/entries/d/|home|user|Workspace" "/home/server/.cache/fzgo/entries/d/|home|user|Workspace"
"/home/server/.cache/fzgo/entries/d/|home|server|Storage|Thomas"
"/home/server/.cache/fzgo/entries/d/|home|server|Storage|Shared"
]; ];
}; };
in { in {
imports = [ imports = [
(import ./utils/fzgo_links.nix {inherit config pkgs fzgo_paths;}) (import ./utils/fzgo_links.nix {inherit config pkgs fzgo_paths;})
(import ./utils/desktop.nix {inherit inputs config pkgs;})
./ssh ./ssh
]; ];
programs.ssh.matchBlocks."*".identityFile = "/home/user/.secrets/SSH/Riva/id_ed25519"; programs.ssh.matchBlocks."*".identityFile = "/home/user/.secrets/SSH/Riva/id_ed25519";
home.packages = with pkgs; [
distrobox
jq
rclone
];
wayland.windowManager.hyprland.settings = {
monitor = [
"Virtual-1,2560x1440,0x0,1"
];
input.kb_options = "compose:rctrl, caps:super, altwin:swap_alt_win";
};
} }

View File

@ -20,16 +20,17 @@
targets.genericLinux.enable = true; targets.genericLinux.enable = true;
programs.home-manager.enable = true; programs.home-manager.enable = true;
home.packages = with pkgs; [ home.packages = with pkgs; [
inputs.worktimer.packages.${pkgs.stdenv.hostPlatform.system}.default
htop htop
ghostscript ghostscript
waypipe waypipe
tree tree
inputs.worktimer.packages.${pkgs.stdenv.hostPlatform.system}.default
usbutils usbutils
gocryptfs gocryptfs
sshfs sshfs
ncdu ncdu
jq jq
rclone
]; ];
home.sessionVariables = { home.sessionVariables = {
XDG_CONFIG_HOME = "${config.xdg.configHome}"; XDG_CONFIG_HOME = "${config.xdg.configHome}";

View File

@ -6,19 +6,9 @@
}: { }: {
imports = [ imports = [
(import ../Common/default.nix {inherit inputs config pkgs;}) (import ../Common/default.nix {inherit inputs config pkgs;})
(import ../Common/nvidia.nix {inherit pkgs config;})
# (import ../Common/desktop.nix { inherit inputs pkgs config; })
]; ];
boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernelPackages = pkgs.linuxPackages_latest;
# services.sunshine = {
# enable = true;
# autoStart = false;
# capSysAdmin = true;
# openFirewall = true;
# };
boot.kernelParams = ["mitigations=off"]; boot.kernelParams = ["mitigations=off"];
zramSwap.enable = true; zramSwap.enable = true;
@ -53,8 +43,12 @@
enable = false; enable = false;
}; };
networking.nameservers = ["192.168.1.2"]; networking.nameservers = ["192.168.1.2"];
programs.steam = { services.tailscale = {
enable = true; enable = true;
gamescopeSession.enable = true; extraUpFlags = [
"--login-server=https://headscale.thomasave.be"
"--accept-routes"
];
authKeyFile = "/home/user/.secrets/Tailscale/Riva/authkey";
}; };
} }