add server config
This commit is contained in:
parent
0ac8781c63
commit
3b1d76f533
7 changed files with 414 additions and 1 deletions
62
homes/x86_64-linux/marshall@polaris-nix/default.nix
Normal file
62
homes/x86_64-linux/marshall@polaris-nix/default.nix
Normal file
|
@ -0,0 +1,62 @@
|
|||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with pkgs; {
|
||||
imports = with inputs; [
|
||||
catppuccin.homeManagerModules.catppuccin
|
||||
nix-index-database.hmModules.nix-index
|
||||
];
|
||||
|
||||
nixpkgs = {
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
|
||||
home = {
|
||||
homeDirectory = "/home/marshall";
|
||||
username = "marshall";
|
||||
|
||||
packages =
|
||||
[
|
||||
alejandra
|
||||
bun
|
||||
grc
|
||||
kitty
|
||||
macchina
|
||||
wl-clipboard
|
||||
xclip
|
||||
zed-editor
|
||||
]
|
||||
++ (with inputs; [
|
||||
nixvim.packages.${pkgs.system}.default
|
||||
]);
|
||||
};
|
||||
|
||||
programs = {
|
||||
gpg.enable = true;
|
||||
skim.enable = true;
|
||||
tealdeer.enable = true;
|
||||
|
||||
atuin = {
|
||||
enable = true;
|
||||
settings = {
|
||||
inline_height = 20;
|
||||
show_preview = true;
|
||||
style = "compact";
|
||||
};
|
||||
};
|
||||
|
||||
git = {
|
||||
signing.key = "91B1F40056A01DDF";
|
||||
};
|
||||
};
|
||||
|
||||
services = {
|
||||
cliphist.enable = true;
|
||||
};
|
||||
|
||||
systemd.user.startServices = "sd-switch";
|
||||
|
||||
home.stateVersion = "23.11";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue