From b84f1c783492a44bc2a5d3931a3bf3e875b0c6ae Mon Sep 17 00:00:00 2001 From: caley <195605706+cqley@users.noreply.github.com> Date: Thu, 6 Aug 2026 18:15:18 +0200 Subject: Rename nixos/modules/layout.nix to nixos/modules/system/layout.nix --- nixos/modules/layout.nix | 16 ---------------- nixos/modules/system/layout.nix | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 16 deletions(-) delete mode 100644 nixos/modules/layout.nix create mode 100644 nixos/modules/system/layout.nix (limited to 'nixos') diff --git a/nixos/modules/layout.nix b/nixos/modules/layout.nix deleted file mode 100644 index c36085d..0000000 --- a/nixos/modules/layout.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ ... }: - -{ - xdg.userDirs = { - enable = true; - createDirectories = true; - download = "/home/cat/downloads"; - documents = "/home/cat/documents"; - pictures = "/home/cat/pictures"; - videos = "/home/cat/videos"; - music = "/home/cat/music"; - desktop = "/home/cat/desktop"; - publicShare = "/home/cat/public"; - templates = "/home/cat/templates"; - }; -} diff --git a/nixos/modules/system/layout.nix b/nixos/modules/system/layout.nix new file mode 100644 index 0000000..c36085d --- /dev/null +++ b/nixos/modules/system/layout.nix @@ -0,0 +1,16 @@ +{ ... }: + +{ + xdg.userDirs = { + enable = true; + createDirectories = true; + download = "/home/cat/downloads"; + documents = "/home/cat/documents"; + pictures = "/home/cat/pictures"; + videos = "/home/cat/videos"; + music = "/home/cat/music"; + desktop = "/home/cat/desktop"; + publicShare = "/home/cat/public"; + templates = "/home/cat/templates"; + }; +} -- cgit v1.3.1