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:
@@ -1,25 +0,0 @@
|
||||
{ pkgs, pkgs-unstable, ... }:
|
||||
{
|
||||
# Enables the 1Password CLI
|
||||
programs._1password = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
# Enables the 1Password desktop app
|
||||
programs._1password-gui = {
|
||||
enable = true;
|
||||
polkitPolicyOwners = [ "menno" ];
|
||||
package = pkgs-unstable._1password-gui;
|
||||
};
|
||||
|
||||
environment.etc = {
|
||||
"1password/custom_allowed_browsers" = {
|
||||
text = ''
|
||||
firefox
|
||||
brave
|
||||
zen
|
||||
'';
|
||||
mode = "0755";
|
||||
};
|
||||
};
|
||||
}
|
@@ -2,10 +2,7 @@
|
||||
{
|
||||
# Import all the package modules
|
||||
imports = [
|
||||
./1password.nix
|
||||
./flatpak.nix
|
||||
./steam.nix
|
||||
./hyprland.nix
|
||||
./ghostty.nix
|
||||
./flatpak.nix
|
||||
];
|
||||
}
|
||||
|
@@ -1,10 +0,0 @@
|
||||
{ ghostty, pkgs, ... }:
|
||||
{
|
||||
# Known issue: https://ghostty.org/docs/help/terminfo
|
||||
# Issue output such as: tput: unknown terminal "xterm-ghostty"
|
||||
# Simply run:
|
||||
# $ infocmp -x | ssh SERVER_TO_FIX -- tic -x -
|
||||
environment.systemPackages = [
|
||||
ghostty.packages.x86_64-linux.default
|
||||
];
|
||||
}
|
@@ -1,13 +0,0 @@
|
||||
# In your configuration.nix
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
# Open ports in the firewall for Steam Remote Play
|
||||
remotePlay.openFirewall = true;
|
||||
# Open ports in the firewall for Source Dedicated Server
|
||||
dedicatedServer.openFirewall = true;
|
||||
# Open ports in the firewall for Steam Local Network Game Transfers
|
||||
localNetworkGameTransfers.openFirewall = true;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user