This commit is contained in:
2026-05-09 00:30:24 +01:00
parent 9b9a34f708
commit 49624c8bd1
3 changed files with 35 additions and 0 deletions
@@ -42,7 +42,10 @@
users.users.doloro = { users.users.doloro = {
shell = pkgs.fish; shell = pkgs.fish;
hashedPasswordFile = config.sops.secrets."doloro-hashed_password".path; hashedPasswordFile = config.sops.secrets."doloro-hashed_password".path;
extraGroups = [ "libvirtd" ];
}; };
virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
}; };
homeManager = homeManager =
{ home, pkgs, ... }: { home, pkgs, ... }:
+31
View File
@@ -0,0 +1,31 @@
{
modules,
den,
inputs,
...
}:
{
flake-file.inputs = {
omp-nix.url = "git+https://git.molez.org/mandlm/omp-nix?ref=main";
};
modules.omp = {
homeManager = {
imports = [ inputs.omp-nix.homeManagerModules.omp ];
oh-my-pi = {
enable = true;
settings = {
theme = "dark-nebula";
symbolPreset = "nerd";
defaultThinkingLevel = "medium";
ask.timeout = 0;
};
skills = {
pdf = "github:anthropics/skills/skills/pdf@b0cbd3df1533b396d281a6886d5132f623393a9c";
frontend-design = "github:anthropics/skills/skills/frontend-design@b0cbd3df1533b396d281a6886d5132f623393a9c";
};
};
};
};
}
+1
View File
@@ -7,6 +7,7 @@
users.users.${user.userName} = { users.users.${user.userName} = {
extraGroups = [ extraGroups = [
"wheel" "wheel"
"libvirtd"
"networkmanager" "networkmanager"
]; ];
}; };