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

View File

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

View File

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

View File

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

View File

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

View File

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