mount hdd sdd
This commit is contained in:
parent
b52c64e8cf
commit
b572b72d55
3 changed files with 19 additions and 13 deletions
|
@ -53,7 +53,7 @@
|
||||||
gdm.enable = true;
|
gdm.enable = true;
|
||||||
gdm.wayland = true;
|
gdm.wayland = true;
|
||||||
};
|
};
|
||||||
desktopManager.plasma5.enable = true;
|
desktopManager.plasma5.enable = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
lazygit
|
lazygit
|
||||||
|
|
||||||
# utility
|
# utility
|
||||||
eww
|
gnome.nautilus
|
||||||
waybar
|
waybar
|
||||||
streamlink
|
streamlink
|
||||||
ranger
|
ranger
|
||||||
|
@ -117,6 +117,7 @@
|
||||||
virt-manager
|
virt-manager
|
||||||
killall
|
killall
|
||||||
playerctl
|
playerctl
|
||||||
|
drawio
|
||||||
|
|
||||||
# entertainment
|
# entertainment
|
||||||
ani-cli
|
ani-cli
|
||||||
|
|
|
@ -23,6 +23,16 @@
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/ssd" =
|
||||||
|
{ device = "/dev/disk/by-uuid/44351feb-6297-47c9-890f-27c9e22a05cb";
|
||||||
|
fsType = "ext4";
|
||||||
|
};
|
||||||
|
fileSystems."/hdd" =
|
||||||
|
{
|
||||||
|
device = "/dev/disk/by-uuid/e2e4c4f3-51df-4020-b557-a7cf684de85b";
|
||||||
|
fsType = "ext4";
|
||||||
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices =
|
||||||
[ { device = "/dev/disk/by-uuid/a850f552-bf4f-45f9-b123-e924980fd0e6"; }
|
[ { device = "/dev/disk/by-uuid/a850f552-bf4f-45f9-b123-e924980fd0e6"; }
|
||||||
];
|
];
|
||||||
|
|
|
@ -8,8 +8,8 @@ let
|
||||||
|
|
||||||
text = ''
|
text = ''
|
||||||
dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=hyprland
|
dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=hyprland
|
||||||
systemctl --user stop pipewire pipewire-media-session xdg-desktop-portal xdg-desktop-portal-wlr
|
systemctl --user stop pipewire pipewire-media-session xdg-desktop-portal xdg-desktop-portal-wlr xdg-desktop-portal-kde
|
||||||
systemctl --user start pipewire pipewire-media-session xdg-desktop-portal xdg-desktop-portal-wlr
|
systemctl --user start pipewire wireplumber pipewire-media-session xdg-desktop-portal xdg-desktop-portal-hyprland
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -51,9 +51,9 @@ in
|
||||||
xdg.portal = {
|
xdg.portal = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wlr.enable = true;
|
wlr.enable = true;
|
||||||
extraPortals = [
|
extraPortals = with pkgs; [
|
||||||
pkgs.xdg-desktop-portal-gtk
|
xdg-desktop-portal-gtk
|
||||||
|
xdg-desktop-portal-wlr
|
||||||
];
|
];
|
||||||
gtkUsePortal = true;
|
gtkUsePortal = true;
|
||||||
};
|
};
|
||||||
|
@ -81,11 +81,6 @@ in
|
||||||
|
|
||||||
GTK_THEME = "Catppuccin-Pink-Dark";
|
GTK_THEME = "Catppuccin-Pink-Dark";
|
||||||
|
|
||||||
#SWW
|
|
||||||
SWWW_TRANSITION_TYPE = "";
|
|
||||||
SWWW_TRANSITION_FPS = "60";
|
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
services.greetd = {
|
services.greetd = {
|
||||||
|
|
Loading…
Reference in a new issue