moves various things to home manager
All checks were successful
Nix Format Check / check-format (push) Successful in 1m4s

This commit is contained in:
2025-01-02 00:59:22 +01:00
parent df66535bf1
commit dfff773f7e
14 changed files with 237 additions and 230 deletions

View File

@@ -0,0 +1,16 @@
{ pkgs, pkgs-unstable, ... }:
{
home.packages = [
pkgs-unstable._1password-cli
pkgs-unstable._1password-gui
];
xdg.configFile."1password/custom_allowed_browsers" = {
text = ''
firefox
brave
zen
'';
executable = true;
};
}

View File

@@ -0,0 +1,6 @@
{ ghostty, pkgs, ... }:
{
home.packages = [
ghostty.packages.${pkgs.system}.default
];
}

View File

@@ -0,0 +1,7 @@
{ pkgs, pkgs-unstable, ... }:
{
home.packages = with pkgs; [
steamcmd
steam-tui
];
}