mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +00:00
Fixes winbox.nix efi partition mountpoint
This commit is contained in:
parent
0f4f700ef1
commit
a2813f85d8
4 changed files with 15 additions and 3 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
])
|
])
|
||||||
|
|
|
@ -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";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue