Fix long standing issue with eww and network drive...
This commit is contained in:
parent
3985f2c498
commit
ab610cbdc2
1 changed files with 5 additions and 39 deletions
|
@ -109,6 +109,9 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# iwlwifi fix?
|
||||||
|
hardware.enableRedistributableFirmware = true;
|
||||||
|
|
||||||
# bluetooth
|
# bluetooth
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
hardware.bluetooth.powerOnBoot = true;
|
hardware.bluetooth.powerOnBoot = true;
|
||||||
|
@ -139,14 +142,7 @@
|
||||||
# List packages installed in system profile.
|
# List packages installed in system profile.
|
||||||
environment.systemPackages =
|
environment.systemPackages =
|
||||||
with pkgs;
|
with pkgs;
|
||||||
let
|
[
|
||||||
catp-gtk = pkgs.catppuccin-gtk.override {
|
|
||||||
accents = [ "flamingo" ]; # You can specify multiple accents here to output multiple themes
|
|
||||||
size = "compact";
|
|
||||||
tweaks = [ "rimless" "black" ]; # You can also specify multiple tweaks here
|
|
||||||
variant = "macchiato";
|
|
||||||
};
|
|
||||||
in [
|
|
||||||
texliveFull
|
texliveFull
|
||||||
# for connecting to nas
|
# for connecting to nas
|
||||||
nfs-utils
|
nfs-utils
|
||||||
|
@ -154,40 +150,14 @@
|
||||||
# some standards for convenience
|
# some standards for convenience
|
||||||
vim
|
vim
|
||||||
parted
|
parted
|
||||||
os-prober
|
|
||||||
qpdfview
|
qpdfview
|
||||||
swww
|
|
||||||
|
|
||||||
# greeter
|
|
||||||
greetd.gtkgreet
|
|
||||||
catp-gtk
|
|
||||||
|
|
||||||
# deps for hyprland / eww
|
# deps for hyprland / eww
|
||||||
socat
|
socat
|
||||||
xdg-desktop-portal-hyprland
|
|
||||||
];
|
];
|
||||||
|
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
|
|
||||||
# NFS setup
|
|
||||||
services.rpcbind.enable = true; # needed for NFS
|
|
||||||
systemd.mounts = [{
|
|
||||||
type = "nfs";
|
|
||||||
mountConfig = {
|
|
||||||
Options = "noatime";
|
|
||||||
};
|
|
||||||
what = "192.168.178.20:/volume1/MiniDrive";
|
|
||||||
where = "/MiniDrive";
|
|
||||||
}];
|
|
||||||
|
|
||||||
systemd.automounts = [{
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
|
||||||
automountConfig = {
|
|
||||||
TimeoutIdleSec = "10";
|
|
||||||
};
|
|
||||||
where = "/MiniDrive";
|
|
||||||
}];
|
|
||||||
|
|
||||||
# source zsh
|
# source zsh
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
users.defaultUserShell = pkgs.zsh;
|
users.defaultUserShell = pkgs.zsh;
|
||||||
|
@ -200,8 +170,6 @@
|
||||||
environment.sessionVariables = {
|
environment.sessionVariables = {
|
||||||
## disable logging when direnv changes
|
## disable logging when direnv changes
|
||||||
DIRENV_LOG_FORMAT = [];
|
DIRENV_LOG_FORMAT = [];
|
||||||
# GTK theme (set here for greetd)
|
|
||||||
GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# fonts
|
# fonts
|
||||||
|
@ -237,8 +205,6 @@
|
||||||
IdentityFile ~/.ssh/git
|
IdentityFile ~/.ssh/git
|
||||||
'';
|
'';
|
||||||
|
|
||||||
programs.steam.enable = true;
|
|
||||||
|
|
||||||
# thunar
|
# thunar
|
||||||
programs.thunar = {
|
programs.thunar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue