basic rofi and more macos cleanup

This commit is contained in:
Noah Masur
2022-05-07 09:24:17 -04:00
parent 43571c66dd
commit 4540327cb8
27 changed files with 155 additions and 23 deletions

10
hosts/common.nix Normal file
View File

@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }: {
nix.extraOptions = "experimental-features = nix-command flakes";
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
environment.systemPackages = with pkgs; [ git vim wget curl ];
}

View File

@ -13,12 +13,12 @@
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/f0313f58-971a-46e3-9191-909fe5eb7f7e";
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/FB26-799C";
device = "/dev/disk/by-label/boot";
fsType = "vfat";
};