Changes to Samhain's hardware configuration to resize the EFI partition after a reformat of it. Added certain programs.

This commit is contained in:
kat witch 2020-11-02 11:05:42 +00:00 committed by kat
parent c542b60917
commit 9c42a3bdbb
3 changed files with 8 additions and 1 deletions

View file

@ -47,6 +47,10 @@
userEmail = "me@dork.dev"; userEmail = "me@dork.dev";
}; };
programs.kakoune = {
enable = true;
};
programs.ssh = { programs.ssh = {
enable = true; enable = true;
controlMaster = "auto"; controlMaster = "auto";

View file

@ -18,6 +18,9 @@ let unstable = import ( fetchTarball https://github.com/NixOS/nixpkgs/archive/ma
pkgs.tdesktop pkgs.tdesktop
pkgs.dino pkgs.dino
pkgs.dconf2nix pkgs.dconf2nix
pkgs.nitrogen
pkgs.appimage-run
pkgs.gimp
pkgs.vscode pkgs.vscode
pkgs.neofetch pkgs.neofetch
pkgs.htop pkgs.htop

View file

@ -24,7 +24,7 @@
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/BADB-92F5"; { device = "/dev/disk/by-uuid/50C3-BE99";
fsType = "vfat"; fsType = "vfat";
}; };