Compare commits

..

No commits in common. "5f9b7cac2c6e44ccd4fe17e14651c8c57a9f4b1d" and "728f7e7ce2c1551e1a633ff54a0d669e62a4526b" have entirely different histories.

5 changed files with 4 additions and 15 deletions

View File

@ -162,7 +162,7 @@
};
networking = mkNixOsNetworking {
inherit pkgs;
use-iwd = false;
use-iwd = true;
};
graphical = mkNixOsGraphical {
inherit pkgs;
@ -204,7 +204,7 @@
modules = [
nixos-apple-silicon.nixosModules.apple-silicon-support
./nixos/machines/foxhut/hardware.nix
(import ./nixos/machines/foxhut/boot.nix { inherit pkgs asahi-firmware; })
(import ./nixos/machines/foxhut/boot.nix { inherit asahi-firmware; })
base
networking
graphical

View File

@ -22,7 +22,7 @@ in rec {
fira-code ibm-plex
]
++ (if pkgs.stdenv.isDarwin then [alloy6-mac] else [pkgs.alloy6])
++ (if pkgs.stdenv.isDarwin then [] else [pkgs.keepassxc pkgs.vesktop pkgs.signal-desktop])
++ (if pkgs.stdenv.isDarwin then [] else [pkgs.keepassxc])
;
programs.alacritty = alacritty;

View File

@ -48,7 +48,6 @@
isNormalUser = true;
extraGroups = [ "wheel" "docker" ];
shell = pkgs.zsh;
uid = 1000;
};
users.users.guest = {
@ -56,7 +55,6 @@
extraGroups = [ ];
home = "/home/guest";
shell = pkgs.zsh;
uid = 1001;
};
security.sudo.wheelNeedsPassword = false;

View File

@ -48,7 +48,6 @@ in
isNormalUser = true;
extraGroups = [ "wheel" "docker" ];
shell = pkgs.zsh;
uid = 1002;
};
environment.systemPackages = with pkgs; [

View File

@ -2,8 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ pkgs, asahi-firmware, ... }:
{ config, ... }:
{ asahi-firmware, ... }:
{
# Use the systemd-boot EFI boot loader.
@ -16,12 +15,5 @@
hardware.asahi.useExperimentalGPUDriver = true;
hardware.asahi.experimentalGPUInstallMode = "replace";
fileSystems.foxshare = {
fsType = "exfat";
device = "/dev/disk/by-label/foxshare";
mountPoint = "/home/xenia/foxshare";
options = ["uid=${builtins.toString config.users.users.xenia.uid}" "nofail"];
};
}