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

@@ -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";
};
};
}

View File

@@ -2,10 +2,7 @@
{
# Import all the package modules
imports = [
./1password.nix
./flatpak.nix
./steam.nix
./hyprland.nix
./ghostty.nix
./flatpak.nix
];
}

View File

@@ -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
];
}

View File

@@ -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;
};
}