Skip to content

Commit

Permalink
Add via config
Browse files Browse the repository at this point in the history
  • Loading branch information
joinemm committed Apr 15, 2024
1 parent b147e29 commit 3738282
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions home-modules/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
chromium
prusa-slicer
nsxiv
via

# cli apps
glow # render markdown on the cli
Expand Down
6 changes: 6 additions & 0 deletions home-modules/yazi.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
enable = true;
enableZshIntegration = true;
settings = {
manager = {
sort_dir_first = true;
sort_by = "modified";
sort_reverse = true;
linemode = "mtime";
};
opener = {
open = [
{
Expand Down
4 changes: 4 additions & 0 deletions hosts/zeus/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@
];
};

services.udev.extraRules = ''
KERNEL=="hidraw*", ATTRS{idVendor}=="6582", ATTRS{idProduct}=="075c", MODE="0666", GROUP="plugdev"
'';

# Configure GPU
# Early KMS isn't helpful
# hardware.amdgpu.loadInInitrd = false;
Expand Down
2 changes: 1 addition & 1 deletion modules/users.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

users."${user}" = {
isNormalUser = true;
extraGroups = ["wheel"];
extraGroups = ["wheel" "plugdev"];
initialPassword = "asdf";
};
};
Expand Down

0 comments on commit 3738282

Please sign in to comment.