move desktops to their own folder
This commit is contained in:
parent
1444fd91c8
commit
06e889c274
7 changed files with 10 additions and 11 deletions
|
|
@ -36,7 +36,7 @@
|
|||
./nixos/programs/anki.nix
|
||||
] [
|
||||
./home/programs/gamer.nix
|
||||
./home/programs/hyprland.nix
|
||||
./home/desktop/hyprland/.
|
||||
./home/programs/personal/.
|
||||
];
|
||||
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
./nixos/modules/work.nix
|
||||
] [
|
||||
./home/programs/work.nix
|
||||
./home/programs/hyprland.nix
|
||||
./home/desktop/hyprland/.
|
||||
];
|
||||
|
||||
vm-sway =
|
||||
|
|
@ -62,7 +62,7 @@
|
|||
./hardware/vm.nix
|
||||
(auto-login "sway")
|
||||
] [
|
||||
./home/programs/sway.nix
|
||||
./home/desktop/sway/.
|
||||
];
|
||||
|
||||
vm-hyprland =
|
||||
|
|
@ -79,7 +79,7 @@
|
|||
./hardware/vm.nix
|
||||
(./nixos/programs/auto-login.nix "Hyprland")
|
||||
] [
|
||||
./home/programs/hyprland.nix
|
||||
./home/desktop/hyprland/.
|
||||
];
|
||||
|
||||
vm-tty = mkConf [
|
||||
|
|
|
|||
|
|
@ -7,9 +7,9 @@
|
|||
modifier = config.windowManager.modifierKey;
|
||||
in {
|
||||
imports = [
|
||||
(import ./swaylock.nix)
|
||||
(import ./swayidle.nix)
|
||||
(import ./waybar.nix)
|
||||
(import ../utils/swaylock.nix)
|
||||
(import ../utils/swayidle.nix)
|
||||
(import ../utils/waybar.nix)
|
||||
];
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
|
|
@ -3,7 +3,6 @@
|
|||
config,
|
||||
...
|
||||
}: let
|
||||
term = "${config.programs.terminal}/bin/${config.programs.terminal.pname}";
|
||||
modKeyName = config.windowManager.modifierKey;
|
||||
modifier =
|
||||
if modKeyName == "SUPER"
|
||||
|
|
@ -13,9 +12,9 @@
|
|||
else null;
|
||||
in {
|
||||
imports = [
|
||||
(import ./swaylock.nix)
|
||||
(import ./swayidle.nix)
|
||||
(import ./waybar.nix)
|
||||
(import ../utils/swaylock.nix)
|
||||
(import ../utils/swayidle.nix)
|
||||
(import ../utils/waybar.nix)
|
||||
];
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
Loading…
Add table
Add a link
Reference in a new issue