common: enable flakes, drop duplicate host imports, import quickshell
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
7bf997176e
commit
a4351473d0
1 changed files with 7 additions and 5 deletions
12
common.nix
12
common.nix
|
|
@ -3,14 +3,12 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
# Hosts #
|
||||
./hosts/FredOS-Gaming.nix
|
||||
./hosts/FredOS-Macbook.nix
|
||||
./hosts/FredOS-Mediaserver.nix
|
||||
|
||||
# Host modules are imported per-host by mkHost in flake.nix.
|
||||
|
||||
# Generic settings #
|
||||
./settings/desktop.nix
|
||||
./settings/hyprland.nix
|
||||
./settings/quickshell.nix
|
||||
./settings/locale.nix
|
||||
./settings/audio.nix
|
||||
./settings/users.nix
|
||||
|
|
@ -89,6 +87,10 @@
|
|||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# Flakes — nixos-rebuild self-enables these, but plain `nix eval` /
|
||||
# `nix flake check` on the hosts need them too.
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
# Enable network-manager
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue