Compare commits
5 commits
25d981a1a0
...
502074653c
| Author | SHA1 | Date | |
|---|---|---|---|
| 502074653c | |||
| fd8053ed65 | |||
| 12c9b16a55 | |||
| e7bee1a15f | |||
| 502e7576ae |
5 changed files with 17 additions and 7 deletions
|
|
@ -6,10 +6,6 @@
|
|||
# As of the 1st of May 2023, the default packages are nano, perl, rsync and strace
|
||||
# I don't need any of them, so I just empty the list
|
||||
defaultPackages = [];
|
||||
variables = {
|
||||
# Environment variables go here
|
||||
EDITOR = "micro";
|
||||
};
|
||||
};
|
||||
|
||||
# Set up /tmp
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
./starship.nix
|
||||
./bat.nix
|
||||
./btop.nix
|
||||
./neovim.nix
|
||||
];
|
||||
# Some programs dont have a programs.*.enable option, so I install their package here
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
|
|||
12
roles/common/programs/neovim.nix
Normal file
12
roles/common/programs/neovim.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home-manager.users.toast = {
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
catppuccin-nvim
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -13,6 +13,7 @@ let inputs = flakeSelf.inputs; in
|
|||
extraBordersEnabled = true;
|
||||
})
|
||||
catppuccin.catppuccin-vsc-icons
|
||||
waderyan.gitblame
|
||||
];
|
||||
userSettings = {
|
||||
# VSCode doesn't like nested settings
|
||||
|
|
|
|||
|
|
@ -18,19 +18,19 @@
|
|||
"school-things" = {
|
||||
label = "School things";
|
||||
id = "z6alc-nfoqr";
|
||||
devices = [ "steamdeck" "server" "pc"];
|
||||
devices = [ "steamdeck" "server" "pc" "winmax2" ];
|
||||
path = "${config.services.syncthing.dataDir}/school-things";
|
||||
};
|
||||
"steam-201810" = {
|
||||
label = "Wolfenstein The New Order Saves";
|
||||
id = "laxxf-t2wmy";
|
||||
devices = [ "steamdeck" "server" "pc" ];
|
||||
devices = [ "steamdeck" "server" "pc" "winmax2" ];
|
||||
path = "${config.services.syncthing.dataDir}/steam-201810";
|
||||
};
|
||||
"retroarch"= {
|
||||
label = "RetroArch";
|
||||
id = "jxuou-2yjnu";
|
||||
devices = [ "steamdeck" "server" "pc" ];
|
||||
devices = [ "steamdeck" "server" "pc" "winmax2" ];
|
||||
path = "${config.services.syncthing.dataDir}/retroarch";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue