guh
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../modules/core
|
../../modules
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.hyprland.enable = true;
|
programs.hyprland.enable = true;
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ inputs.hjem.nixosModules.default ];
|
imports = [inputs.hjem.nixosModules.default];
|
||||||
|
|
||||||
config.hjem = {
|
config.hjem = {
|
||||||
extraModules = [inputs.hjem-rum.hjemModules.default];
|
extraModules = [inputs.hjem-rum.hjemModules.default];
|
||||||
|
|||||||
@@ -8,10 +8,11 @@
|
|||||||
users.users.${username} = {
|
users.users.${username} = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "${username}";
|
description = "${username}";
|
||||||
|
#group = "${username}";
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
"wheel"
|
"wheel"
|
||||||
];
|
];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
nix.settings.allowed-users = [ "${username}" ];
|
nix.settings.allowed-users = [ "@wheel" ];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,12 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, username, ... }:
|
||||||
{
|
{
|
||||||
programs.git = {
|
config.hjem.users.username.rum.programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "poslop";
|
settings = {
|
||||||
userEmail = "poslop@archfox.org";
|
user = {
|
||||||
|
name = "poslop";
|
||||||
|
email = "poslop@archfox.org";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, username, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
hjem.users.username.packages = with pkgs; [
|
||||||
git
|
git
|
||||||
zsh
|
zsh
|
||||||
neofetch
|
neofetch
|
||||||
@@ -11,5 +11,6 @@
|
|||||||
vim
|
vim
|
||||||
wget
|
wget
|
||||||
curl
|
curl
|
||||||
|
foot
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
{
|
{
|
||||||
programs.zsh = {
|
config.hjem.users.username.rum.programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableCompletion = true;
|
|
||||||
autosuggestion.enable = true;
|
|
||||||
syntaxHighlighting.enable = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user