add user to dialout group for access to Duet3DMC6HC
This commit is contained in:
parent
b20a1f400a
commit
442bbceb38
5 changed files with 92 additions and 94 deletions
|
@ -11,15 +11,40 @@
|
|||
./flatpak.nix
|
||||
./sober.nix
|
||||
# ./librewolf.nix
|
||||
./zsh.nix
|
||||
./eza.nix
|
||||
];
|
||||
|
||||
# States home manager version that config was originally compatible with, do not change without reading all patch notes since this version and altering as needed
|
||||
home.stateVersion = "24.05";
|
||||
|
||||
|
||||
home.pointerCursor =
|
||||
let
|
||||
getFrom = url: hash: name: {
|
||||
gtk.enable = true;
|
||||
x11.enable = true;
|
||||
name = name;
|
||||
size = 48;
|
||||
package =
|
||||
pkgs.runCommand "moveUp" {} ''
|
||||
mkdir -p $out/share/icons
|
||||
ln -s ${pkgs.fetchzip {
|
||||
url = url;
|
||||
hash = hash;
|
||||
}} $out/share/icons/${name}
|
||||
'';
|
||||
};
|
||||
in
|
||||
getFrom
|
||||
"https://github.com/ful1e5/fuchsia-cursor/releases/download/v2.0.0/Fuchsia-Pop.tar.gz"
|
||||
"sha256-BvVE9qupMjw7JRqFUj1J0a4ys6kc9fOLBPx2bGaapTk="
|
||||
"Fuchsia-Pop";
|
||||
|
||||
# General use home packages that dont require a separate module
|
||||
home.packages = [
|
||||
# Add grimblast screenshot tool
|
||||
pkgs.grimblast
|
||||
pkgs.powerline-fonts
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
|
@ -47,6 +72,9 @@
|
|||
lines = 3;
|
||||
columns = 200;
|
||||
};
|
||||
font.normal = {
|
||||
family = "hack";
|
||||
};
|
||||
# keyboard.bindings = [
|
||||
# {
|
||||
# key = "K";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue