✨ feat(home): Install bat
Rose Pine works!!!!!!!!
This commit is contained in:
parent
6ec016d345
commit
e1738b4b2e
2 changed files with 33 additions and 9 deletions
30
flake.lock
30
flake.lock
|
@ -68,11 +68,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1729260213,
|
"lastModified": 1729459288,
|
||||||
"narHash": "sha256-jAvHoU/1y/yCuXzr2fNF+q6uKmr8Jj2xgAisK4QB9to=",
|
"narHash": "sha256-gBOVJv+q6Mx8jGvwX7cE6J8+sZmi1uxpRVsO7WxvVuQ=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "09a0c0c02953318bf94425738c7061ffdc4cba75",
|
"rev": "1e27f213d77fc842603628bcf2df6681d7d08f7e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -83,11 +83,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1729070438,
|
"lastModified": 1729256560,
|
||||||
"narHash": "sha256-KOTTUfPkugH52avUvXGxvWy8ibKKj4genodIYUED+Kc=",
|
"narHash": "sha256-/uilDXvCIEs3C9l73JTACm4quuHUsIHcns1c+cHUJwA=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "5785b6bb5eaae44e627d541023034e1601455827",
|
"rev": "4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -101,7 +101,23 @@
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"alejandra": "alejandra",
|
"alejandra": "alejandra",
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs",
|
||||||
|
"rose-pine": "rose-pine"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rose-pine": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1729474676,
|
||||||
|
"narHash": "sha256-m9cnP77ntsE0oHTzgqfcKod0+5vX/poYP3O3T0ScdVI=",
|
||||||
|
"ref": "refs/heads/main",
|
||||||
|
"rev": "558c12035e8c7ec81c07701e2d20ffe37dff84e8",
|
||||||
|
"revCount": 370,
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.punkfairie.net/punkfairie/rose-pine-nix"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.punkfairie.net/punkfairie/rose-pine-nix"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rust-analyzer-src": {
|
"rust-analyzer-src": {
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
{ system, pkgs, inputs, ... }:
|
|
||||||
{
|
{
|
||||||
|
system,
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
home.username = "marley";
|
home.username = "marley";
|
||||||
home.homeDirectory = "/home/marley";
|
home.homeDirectory = "/home/marley";
|
||||||
|
|
||||||
|
@ -13,6 +17,10 @@
|
||||||
inputs.alejandra.defaultPackage.${system}
|
inputs.alejandra.defaultPackage.${system}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./bat
|
||||||
|
];
|
||||||
|
|
||||||
# This value determines the Home Manager release that your configuration is
|
# This value determines the Home Manager release that your configuration is
|
||||||
# compatible with. This helps avoid breakage when a new Home Manager release
|
# compatible with. This helps avoid breakage when a new Home Manager release
|
||||||
# introduces backwards incompatible changes.
|
# introduces backwards incompatible changes.
|
||||||
|
|
Loading…
Reference in a new issue