Compare commits

..

6 commits

5 changed files with 15 additions and 2 deletions

View file

@ -159,6 +159,7 @@
}) })
# base home manager settings # base home manager settings
({ ... }: { ({ ... }: {
home-manager.backupFileExtension = "backup";
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { home-manager.extraSpecialArgs = {

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: { globalData, pkgs, ... }:
{ {
imports = [ imports = [
@ -26,6 +26,11 @@
################################################################################ ################################################################################
# Programs # Programs
################################################################################ ################################################################################
services.ollama = {
enable = true;
package = pkgs.unstable.ollama;
};
local.programs.browsers.tor-browser.enable = true; local.programs.browsers.tor-browser.enable = true;
environment.shellInit = '' environment.shellInit = ''

View file

@ -71,6 +71,7 @@
fallout-ce fallout-ce
fallout2-ce fallout2-ce
openmw openmw
openxcom
# tools # tools
vim vim
unzip unzip

View file

@ -87,6 +87,11 @@ in
publicKey = "IUw38F1ik2y2XoPh3Nd1VVxHz9nfKDfNKyzBaEi0rjc="; publicKey = "IUw38F1ik2y2XoPh3Nd1VVxHz9nfKDfNKyzBaEi0rjc=";
allowedIPs = [ "10.20.30.7/32" ]; allowedIPs = [ "10.20.30.7/32" ];
} }
# Laptop m
{
publicKey = "dF5YEeK1nw2V4GNLwg67M+r8NMA315KpueQMk+ZFO1M=";
allowedIPs = [ "10.20.30.8/32" ];
}
]; ];
}; };
}; };

View file

@ -37,7 +37,8 @@ in
]; ];
config = lib.mkIf isEnable { config = lib.mkIf isEnable {
environment.systemPackages = hostPackages; environment.systemPackages = hostPackages
++ lib.optional cfg.librewolf.enable cfg.librewolf.package;
hardware.pulseaudio = { hardware.pulseaudio = {
systemWide = true; systemWide = true;