From f54dad57d4705bb67da6f77b1423c0ed725c59e9 Mon Sep 17 00:00:00 2001 From: triethyl Date: Thu, 14 Aug 2025 14:24:01 -0400 Subject: added thinkpad-laptop device --- users/thinkpad-laptop/lucas.nix | 61 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 users/thinkpad-laptop/lucas.nix (limited to 'users/thinkpad-laptop/lucas.nix') diff --git a/users/thinkpad-laptop/lucas.nix b/users/thinkpad-laptop/lucas.nix new file mode 100644 index 0000000..bd6ba38 --- /dev/null +++ b/users/thinkpad-laptop/lucas.nix @@ -0,0 +1,61 @@ +{ + pkgs, + lib, + ... +}: { + home = { + username = "lucas"; + homeDirectory = "/home/lucas"; + stateVersion = "24.11"; + + packages = with pkgs; [ + tor-browser + onlyoffice-desktopeditors + calibre + + # My custom neovim package. + custom-neovim + neovide + ]; + }; + aesthetics = { + enable = true; + enableAllTargets = true; + hasGui = true; + theme = "oxocarbon"; + }; + programs.helix.package = lib.mkForce pkgs.helix; # Building helix takes too much power + features = { + gui = { + apps = { + foot.enable = true; + librewolf.enable = true; + qutebrowser.enable = true; + }; + desktops.niri.enable = true; + }; + cli = { + shells.nushell.enable = true; + apps = { + btop.enable = true; + helix.enable = true; + zellij.enable = true; + lazygit.enable = true; + }; + utils = { + git.enable = true; + pandoc.enable = true; + ssh.enable = true; + }; + bundles = { + go-env.enable = true; + }; + scripts = { + spiral.enable = true; + }; + }; + services = { + udiskie.enable = true; + }; + }; +} -- cgit v1.2.3