2023-11-19 19:31:04 -08:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
2024-02-21 14:48:45 -08:00
|
|
|
|
{
|
2023-11-19 19:31:04 -08:00
|
|
|
|
nix.package = pkgs.nixUnstable;
|
|
|
|
|
|
imports =
|
2023-12-04 17:43:21 -08:00
|
|
|
|
[
|
2023-11-19 19:31:04 -08:00
|
|
|
|
# System essentials (boot, lang, hostname, ...)
|
2024-02-21 14:48:45 -08:00
|
|
|
|
../../modules/system
|
2023-11-19 19:31:04 -08:00
|
|
|
|
|
2024-02-21 14:48:45 -08:00
|
|
|
|
../../modules/user
|
2023-11-19 19:31:04 -08:00
|
|
|
|
|
2024-02-21 14:48:45 -08:00
|
|
|
|
../../modules/themeing
|
2023-11-19 19:31:04 -08:00
|
|
|
|
|
2024-02-21 14:48:45 -08:00
|
|
|
|
../../modules/audio/pipewire
|
2023-11-19 19:31:04 -08:00
|
|
|
|
|
2024-02-21 14:48:45 -08:00
|
|
|
|
../../modules/shell/xonsh
|
|
|
|
|
|
../../modules/network/browsers/librewolf
|
|
|
|
|
|
../../modules/network/syncthing
|
2023-12-04 17:43:21 -08:00
|
|
|
|
|
2024-02-21 14:48:45 -08:00
|
|
|
|
../../modules/login/greetd
|
2024-03-22 02:54:25 -07:00
|
|
|
|
../../modules/window_managers/hyprland
|
2023-11-19 19:31:04 -08:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
|
|
|
|
|
|
|
system.stateVersion = "23.05";
|
|
|
|
|
|
}
|