This commit is contained in:
2026-02-05 16:04:00 +01:00
parent 53cf49f158
commit 4ac16cedc4
5 changed files with 151 additions and 22 deletions

View File

@@ -1,10 +1,10 @@
{
lib,
inputs,
outputs,
config,
pkgs,
...
{ lib
, inputs
, outputs
, self
, config
, pkgs
, ...
}:
let
username = "h";
@@ -38,6 +38,7 @@ in
(import ../../modules/secrets { inherit lib inputs config; })
../../modules/docker
../../modules/syncthing
../../modules/git-hooks
];
home-manager.users.${username} = import ../../home/hosts/andromache {
@@ -99,6 +100,11 @@ in
];
services = {
git-hooks = {
enable = true;
flake-path = self;
};
xserver = {
videoDrivers = [ "nvidia" ];
};