This commit is contained in:
strix 2026-08-25 14:00:13 +02:00
parent ed13a64d87
commit d998fe6155
7 changed files with 47 additions and 20 deletions

View file

@ -3,4 +3,6 @@
imports = [
./users.nix
];
programs.zsh.enable = true;
}

View file

@ -1,7 +1,5 @@
{
pkgs,
filter,
config,
...
}:
{
@ -18,11 +16,22 @@
nixd
treefmt
tealdeer
claude-code
gnome-extension-manager
lmstudio
];
home.sessionVariables = {
SSH_AUTH_SOCK = "/home/strix/.bitwarden-ssh-agent.sock";
};
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
theme = "nanotech";
};
};
programs.git = {
enable = true;
@ -32,7 +41,7 @@
init = { defaultBranch = "main"; };
};
};
dconf.settings = {
"org/gnome/settings-daemon/plugins/media-keys" = {
custom-keybindings = [

Binary file not shown.

Before

Width:  |  Height:  |  Size: 330 KiB

After

Width:  |  Height:  |  Size: 116 KiB

Before After
Before After

View file

@ -1,4 +1,4 @@
{ home-manager, inputs, filter, ... }:
{ home-manager, inputs, filter, pkgs, ... }:
{
imports = [
../util/profile-icons.nix
@ -13,17 +13,19 @@
users.users."strix" = {
isNormalUser = true;
icon = "${./common/profile.png}";
icon = "${./profile.png}";
shell = pkgs.zsh;
description = "Strix";
initialPassword = "changeme";
extraGroups = [
"wheel"
"networkmanager"
"libvirtd"
"docker"
];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMjsxlXIgj0sPuzjgfeqAfe1gTNAeFpAext2wbfjOLPE"
];
};
}