no clue really

This commit is contained in:
2025-07-09 11:46:32 -05:00
parent 773eaaf26d
commit ce38e52ee9
21 changed files with 99 additions and 121 deletions

View File

@@ -11,4 +11,3 @@
./ssh.nix
];
}

View File

@@ -1,14 +1,13 @@
{
inputs,
username,
...
}:
{ inputs, username, lib, ... }:
{
imports = [inputs.hjem.nixosModules.default];
imports = [
inputs.hjem.nixosModules.default
(lib.modules.mkAliasOptionModule ["hj"] ["hjem" "users" username])
];
config.hjem = {
extraModules = [inputs.hjem-rum.hjemModules.default];
extraModules = [ inputs.hjem-rum.hjemModules.default ];
users.${username} = {
enable = true;

View File

@@ -1,7 +1,4 @@
{
pkgs,
...
}:
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
wl-clipboard

View File

@@ -1,4 +1,4 @@
{ pkgs, lib, ... }:
_:
{
programs.zsh.enable = true;
}

View File

@@ -1,7 +1,4 @@
{
pkgs,
...
}:
_:
{
services.openssh = {
enable = true;

View File

@@ -1,3 +1 @@
{
time.timeZone = "America/Chicago";
}
{ time.timeZone = "America/Chicago"; }

View File

@@ -1,17 +1,10 @@
{
username,
pkgs,
...
}:
{ username, pkgs, ... }:
{
users.users.${username} = {
isNormalUser = true;
description = "${username}";
#group = "${username}";
extraGroups = [
"wheel"
];
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
};
nix.settings.allowed-users = [ "@wheel" ];

View File

@@ -1,6 +1,10 @@
{ config, pkgs, username, ... }:
{
config.hjem.users.username.rum.programs.git = {
config,
username,
...
}:
{
hj.rum.programs.git = {
enable = true;
settings = {
user = {

View File

@@ -1,3 +1 @@
{
programs.hyprland.enable = true;
}
{ programs.hyprland.enable = true; }

View File

@@ -1,5 +1 @@
{
config.me.rum.programs.hyprland.settings.monitor = [
", 1920x1080@60, auto, 1"
];
}
{ config.me.rum.programs.hyprland.settings.monitor = [ ", 1920x1080@60, auto, 1" ]; }

View File

@@ -1,4 +1,4 @@
{ pkgs, inputs, ... }:
_:
{
programs.neovim = {
enable = true;

View File

@@ -1,7 +1,12 @@
{ config, pkgs, username, ... }:
{
pkgs,
username,
...
}:
{
hjem.users.username.packages = with pkgs; [
hjem.users.${username}.packages = with pkgs; [
statix
git
zsh
neofetch

View File

@@ -1,7 +1,4 @@
{
pkgs,
...
}:
_:
{
services.openssh = {
enable = true;

View File

@@ -1,5 +1 @@
{
imports = [
./zsh.nix
];
}
{ imports = [ ./zsh.nix ]; }

View File

@@ -1,6 +0,0 @@
{
programs.zsh.plugins = [
{
}
}

View File

@@ -1,5 +1,6 @@
{ username, ... }:
{
config.hjem.users.username.rum.programs.zsh = {
config.hjem.users.${username}.rum.programs.zsh = {
enable = true;
};
}