moves various things to home manager
All checks were successful
Nix Format Check / check-format (push) Successful in 1m4s
All checks were successful
Nix Format Check / check-format (push) Successful in 1m4s
This commit is contained in:
16
config/home-manager/packages/workstation/1password.nix
Normal file
16
config/home-manager/packages/workstation/1password.nix
Normal 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;
|
||||
};
|
||||
}
|
6
config/home-manager/packages/workstation/ghostty.nix
Normal file
6
config/home-manager/packages/workstation/ghostty.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ ghostty, pkgs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
ghostty.packages.${pkgs.system}.default
|
||||
];
|
||||
}
|
7
config/home-manager/packages/workstation/steam.nix
Normal file
7
config/home-manager/packages/workstation/steam.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ pkgs, pkgs-unstable, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
steamcmd
|
||||
steam-tui
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user