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
10
common.nix
10
common.nix
|
|
@ -3,14 +3,12 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
# Hosts #
|
# Host modules are imported per-host by mkHost in flake.nix.
|
||||||
./hosts/FredOS-Gaming.nix
|
|
||||||
./hosts/FredOS-Macbook.nix
|
|
||||||
./hosts/FredOS-Mediaserver.nix
|
|
||||||
|
|
||||||
# Generic settings #
|
# Generic settings #
|
||||||
./settings/desktop.nix
|
./settings/desktop.nix
|
||||||
./settings/hyprland.nix
|
./settings/hyprland.nix
|
||||||
|
./settings/quickshell.nix
|
||||||
./settings/locale.nix
|
./settings/locale.nix
|
||||||
./settings/audio.nix
|
./settings/audio.nix
|
||||||
./settings/users.nix
|
./settings/users.nix
|
||||||
|
|
@ -89,6 +87,10 @@
|
||||||
# Allow unfree packages
|
# Allow unfree packages
|
||||||
nixpkgs.config.allowUnfree = true;
|
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
|
# Enable network-manager
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue