From 1c26c0d3265bc71103c19e7f163807406f6fb271 Mon Sep 17 00:00:00 2001 From: triethyl Date: Sun, 15 Mar 2026 21:41:47 -0400 Subject: changed to lucia --- home-manager/users/thinkpad-laptop/lucia.nix | 64 ++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 home-manager/users/thinkpad-laptop/lucia.nix (limited to 'home-manager/users/thinkpad-laptop/lucia.nix') diff --git a/home-manager/users/thinkpad-laptop/lucia.nix b/home-manager/users/thinkpad-laptop/lucia.nix new file mode 100644 index 0000000..49eb98a --- /dev/null +++ b/home-manager/users/thinkpad-laptop/lucia.nix @@ -0,0 +1,64 @@ +{ + pkgs, + ... +}: { + home = { + username = "lucia"; + homeDirectory = "/home/lucia"; + stateVersion = "24.11"; + + packages = with pkgs; [ + tor-browser + calibre + + cheese # camera app + + # My custom neovim package. + custom-neovim + neovide + + # games + prismlauncher + + # Custom Scripts + inbox-review + ]; + }; + aesthetics = { + enable = true; + enableAllTargets = true; + hasGui = true; + theme = "oxocarbon"; + }; + features = { + gui = { + apps = { + foot.enable = true; + librewolf.enable = true; + vesktop.enable = true; + anki.enable = true; + }; + bundles = { + art.enable = true; + office.enable = true; + }; + desktops.niri.enable = true; + }; + cli = { + shells.nushell.enable = true; + apps = { + btop.enable = true; + lazygit.enable = true; + khal.enable = true; + }; + utils = { + git.enable = true; + pandoc.enable = true; + ssh.enable = true; + }; + }; + services = { + udiskie.enable = true; + }; + }; +} -- cgit v1.2.3