This commit is contained in:
foglar 2025-01-25 17:51:01 +01:00
parent a7c2c6262c
commit 662c47fba5
6 changed files with 12 additions and 5 deletions

View File

@ -3,6 +3,7 @@
pkgs, pkgs,
pkgs-stable, pkgs-stable,
userSettings, userSettings,
system,
... ...
}: { }: {
imports = [ imports = [
@ -16,7 +17,7 @@
# Home manager # Home manager
home-manager = { home-manager = {
extraSpecialArgs = {inherit inputs pkgs pkgs-stable userSettings;}; extraSpecialArgs = {inherit inputs system pkgs pkgs-stable userSettings;};
backupFileExtension = "backup"; backupFileExtension = "backup";
users = { users = {
${userSettings.username} = import ./home.nix; ${userSettings.username} = import ./home.nix;

View File

@ -3,6 +3,7 @@
pkgs, pkgs,
pkgs-stable, pkgs-stable,
userSettings, userSettings,
system,
... ...
}: { }: {
imports = [ imports = [
@ -17,7 +18,7 @@
# Home manager # Home manager
home-manager = { home-manager = {
extraSpecialArgs = {inherit inputs pkgs pkgs-stable userSettings;}; extraSpecialArgs = {inherit inputs system pkgs pkgs-stable userSettings;};
backupFileExtension = "backup"; backupFileExtension = "backup";
users = { users = {
${userSettings.username} = import ./home.nix; ${userSettings.username} = import ./home.nix;
@ -80,8 +81,8 @@
}; };
environment.systemPackages = [ environment.systemPackages = [
inputs.install-script.packages.x86_64-linux.default inputs.install-script.packages.${system}.default
inputs.shinya-nvf.packages.x86_64-linux.nvf inputs.shinya-nvf.packages.${system}.nvf
]; ];
#services.twingate.enable = true; #services.twingate.enable = true;

View File

@ -1,5 +1,6 @@
{ {
userSettings, userSettings,
pkgs,
... ...
}: { }: {
# Home manager configuration # Home manager configuration

View File

@ -10,6 +10,8 @@
}; };
config = lib.mkIf config.app_list.applications.enable { config = lib.mkIf config.app_list.applications.enable {
services.arrpc.enable = true;
home.packages = home.packages =
(with pkgs; [ (with pkgs; [
librewolf-wayland librewolf-wayland

View File

@ -3,6 +3,7 @@
lib, lib,
config, config,
inputs, inputs,
system,
... ...
}: { }: {
options = { options = {
@ -24,7 +25,7 @@
lazygit lazygit
]) ])
++ ( ++ (
with inputs.ghostty.packages.x86_64-linux; [ with inputs.ghostty.packages.${system}; [
default default
] ]
); );

View File

@ -12,6 +12,7 @@
open = "rifle"; open = "rifle";
ip = "ip -c"; ip = "ip -c";
s = "kitten ssh"; s = "kitten ssh";
icat = "kitten icat";
diff = "diff --color"; diff = "diff --color";
respawn = "clear; ${pkgs.pfetch}/bin/pfetch"; respawn = "clear; ${pkgs.pfetch}/bin/pfetch";
mkdir = "mkdir -p"; mkdir = "mkdir -p";