Compare commits

...

5 commits

5 changed files with 17 additions and 7 deletions

View file

@ -6,10 +6,6 @@
# As of the 1st of May 2023, the default packages are nano, perl, rsync and strace # 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 # I don't need any of them, so I just empty the list
defaultPackages = []; defaultPackages = [];
variables = {
# Environment variables go here
EDITOR = "micro";
};
}; };
# Set up /tmp # Set up /tmp

View file

@ -13,6 +13,7 @@
./starship.nix ./starship.nix
./bat.nix ./bat.nix
./btop.nix ./btop.nix
./neovim.nix
]; ];
# Some programs dont have a programs.*.enable option, so I install their package here # Some programs dont have a programs.*.enable option, so I install their package here
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
home-manager.users.toast = {
programs.neovim = {
enable = true;
plugins = with pkgs.vimPlugins; [
catppuccin-nvim
];
};
};
}

View file

@ -13,6 +13,7 @@ let inputs = flakeSelf.inputs; in
extraBordersEnabled = true; extraBordersEnabled = true;
}) })
catppuccin.catppuccin-vsc-icons catppuccin.catppuccin-vsc-icons
waderyan.gitblame
]; ];
userSettings = { userSettings = {
# VSCode doesn't like nested settings # VSCode doesn't like nested settings

View file

@ -18,19 +18,19 @@
"school-things" = { "school-things" = {
label = "School things"; label = "School things";
id = "z6alc-nfoqr"; id = "z6alc-nfoqr";
devices = [ "steamdeck" "server" "pc"]; devices = [ "steamdeck" "server" "pc" "winmax2" ];
path = "${config.services.syncthing.dataDir}/school-things"; path = "${config.services.syncthing.dataDir}/school-things";
}; };
"steam-201810" = { "steam-201810" = {
label = "Wolfenstein The New Order Saves"; label = "Wolfenstein The New Order Saves";
id = "laxxf-t2wmy"; id = "laxxf-t2wmy";
devices = [ "steamdeck" "server" "pc" ]; devices = [ "steamdeck" "server" "pc" "winmax2" ];
path = "${config.services.syncthing.dataDir}/steam-201810"; path = "${config.services.syncthing.dataDir}/steam-201810";
}; };
"retroarch"= { "retroarch"= {
label = "RetroArch"; label = "RetroArch";
id = "jxuou-2yjnu"; id = "jxuou-2yjnu";
devices = [ "steamdeck" "server" "pc" ]; devices = [ "steamdeck" "server" "pc" "winmax2" ];
path = "${config.services.syncthing.dataDir}/retroarch"; path = "${config.services.syncthing.dataDir}/retroarch";
}; };
}; };