Made hostname variable (set in flake). Added ncli as a tool for fast nix specific commands (ncli.nix).

This commit is contained in:
2025-11-21 17:16:01 +01:00
parent c42feb3c42
commit 9dd27350e2
4 changed files with 334 additions and 7 deletions

View File

@ -1,9 +1,12 @@
{ lib, inputs, config, pkgs, username, version, ... }:
{ lib, inputs, config, pkgs, username, host, version, ... }:
{
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = username;
home.homeDirectory = "/home/${username}";
home.packages = [
(import ./ncli.nix { inherit pkgs host; backupFiles = [ ".config/mimeapps.list.backup" ]; })
];
imports = [
inputs.zen-browser.homeModules.beta