Fixes winbox.nix efi partition mountpoint

This commit is contained in:
willemml 2023-11-08 16:04:39 -08:00
parent 0f4f700ef1
commit a2813f85d8
Signed by: willemml
GPG key ID: C3DE5DF6198DACBD
4 changed files with 15 additions and 3 deletions

View file

@ -28,6 +28,14 @@
home-manager.users.willem = self.homeManagerModules.user-willem-linux; home-manager.users.willem = self.homeManagerModules.user-willem-linux;
}; };
nixosModules.willem-hyprland = {...}: {
imports = [
inputs.home-manager.nixosModules.home-manager
self.nixosModules.homeManagerIntegration
];
home-manager.users.willem = self.homeManagerModules.user-willem-linux;
};
darwinModules.base = {...}: { darwinModules.base = {...}: {
imports = [ imports = [
../../nixos/profiles/common.nix ../../nixos/profiles/common.nix

View file

@ -38,6 +38,12 @@
gptk-steam(){ wine-gptk "${config.home.homeDirectory}/.gptk_wineprefix/drive_c/Program\ Files\ \(x86\)/Steam/steam.exe"; } gptk-steam(){ wine-gptk "${config.home.homeDirectory}/.gptk_wineprefix/drive_c/Program\ Files\ \(x86\)/Steam/steam.exe"; }
''; '';
programs.emacs.extraPackages = epkgs:
with epkgs; [
swift-mode
company-sourcekit
];
home.packages = with pkgs; home.packages = with pkgs;
[ [
colima colima

View file

@ -28,7 +28,6 @@
all-the-icons all-the-icons
all-the-icons-dired all-the-icons-dired
company-mode company-mode
company-sourcekit
counsel counsel
dash dash
editorconfig editorconfig
@ -51,7 +50,6 @@
s s
separedit separedit
solarized-theme solarized-theme
swift-mode
swiper swiper
yasnippet yasnippet
]) ])

View file

@ -28,7 +28,7 @@
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot/efi" = { fileSystems."/boot" = {
device = "/dev/disk/by-uuid/4FEE-904E"; device = "/dev/disk/by-uuid/4FEE-904E";
fsType = "vfat"; fsType = "vfat";
}; };