stuff
This commit is contained in:
parent
ed13a64d87
commit
d998fe6155
7 changed files with 47 additions and 20 deletions
|
|
@ -3,4 +3,6 @@
|
|||
imports = [
|
||||
./users.nix
|
||||
];
|
||||
|
||||
programs.zsh.enable = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 |
|
|
@ -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"
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue