summaryrefslogtreecommitdiff
path: root/users
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-08-14 14:24:01 -0400
committertriethyl <triethylammonium@pm.me>2025-08-14 14:24:01 -0400
commitf54dad57d4705bb67da6f77b1423c0ed725c59e9 (patch)
tree51cea34ac6c5ee526d7e13e7fd003b8879b1e160 /users
parent5f8c7e7b19e48fb4925e5d4fa63dc4dfdf000c5c (diff)
added thinkpad-laptop device
Diffstat (limited to 'users')
-rw-r--r--users/thinkpad-laptop/lucas.nix61
1 files changed, 61 insertions, 0 deletions
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;
+ };
+ };
+}