Added nh, added some options such as username and hardware config

This commit is contained in:
Aleksandr Lebedev 2024-11-30 18:44:18 +01:00
parent b4f3add8ea
commit ca216ad1dc
6 changed files with 46 additions and 25 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, stylix, hostname, inputs, ... }:
{ config, pkgs, stylix, hwconfig, username, inputs, ... }:
let
#nur = import (builtins.fetchTarball {
@ -19,11 +19,10 @@
];
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "kylekrein";
home.homeDirectory = "/home/kylekrein";
home.username = username;
home.homeDirectory = "/home/${username}";
stylix = {
enable = true;
targets.hyprlock.enable = true;
};
qt = {
enable = true;