summaryrefslogtreecommitdiff
path: root/home-manager/users/thinkpad-laptop/lucia.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/users/thinkpad-laptop/lucia.nix')
-rw-r--r--home-manager/users/thinkpad-laptop/lucia.nix64
1 files changed, 64 insertions, 0 deletions
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;
+ };
+ };
+}