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;
|
||||
};
|
||||
|
||||
# iwlwifi fix?
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
|
||||
# bluetooth
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
|
@ -139,14 +142,7 @@
|
|||
# List packages installed in system profile.
|
||||
environment.systemPackages =
|
||||
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
|
||||
# for connecting to nas
|
||||
nfs-utils
|
||||
|
@ -154,40 +150,14 @@
|
|||
# some standards for convenience
|
||||
vim
|
||||
parted
|
||||
os-prober
|
||||
qpdfview
|
||||
swww
|
||||
|
||||
# greeter
|
||||
greetd.gtkgreet
|
||||
catp-gtk
|
||||
|
||||
# deps for hyprland / eww
|
||||
socat
|
||||
xdg-desktop-portal-hyprland
|
||||
];
|
||||
|
||||
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
|
||||
programs.zsh.enable = true;
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
|
@ -200,8 +170,6 @@
|
|||
environment.sessionVariables = {
|
||||
## disable logging when direnv changes
|
||||
DIRENV_LOG_FORMAT = [];
|
||||
# GTK theme (set here for greetd)
|
||||
GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
|
||||
};
|
||||
|
||||
# fonts
|
||||
|
@ -237,8 +205,6 @@
|
|||
IdentityFile ~/.ssh/git
|
||||
'';
|
||||
|
||||
programs.steam.enable = true;
|
||||
|
||||
# thunar
|
||||
programs.thunar = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue