Add thinkpad pop os

This commit is contained in:
Sridhar Ratnakumar 2025-10-02 09:06:34 -04:00
parent 538967b7af
commit 54660ba4bd

View file

@ -0,0 +1,24 @@
# This machine uses Omarchy
#
# So we consciously pick what we need
{ flake, ... }:
let
inherit (flake) inputs;
inherit (inputs) self;
homeMod = self + /modules/home;
in
{
imports = [
"${homeMod}/claude-code"
"${homeMod}/all/git.nix"
"${homeMod}/all/just.nix"
"${homeMod}/all/direnv.nix"
"${homeMod}/all/starship.nix"
"${homeMod}/all/bash.nix"
"${homeMod}/all/terminal.nix"
# "${homeMod}/all/1password.nix"
];
home.username = "srid";
home.stateVersion = "25.05";
}