commit b56a956345dbe9cc152097b540436a74fee3a844
Author: langedev <public@daltonlange.com>
Date: Wed Feb 21 14:31:11 2024 -0800
Fix typo
commit 38aadf56730fb7d7a9ddbf704d024061c43983b3
Author: langedev <public@daltonlange.com>
Date: Wed Feb 21 14:24:49 2024 -0800
testing refactoring
34 lines
926 B
Nix
34 lines
926 B
Nix
# 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, ... }:
|
||
{
|
||
nix.package = pkgs.nixUnstable;
|
||
imports =
|
||
[
|
||
# System essentials (boot, lang, hostname, ...)
|
||
../../modules/system
|
||
|
||
../../modules/user
|
||
|
||
../../modules/themeing
|
||
|
||
../../modules/audio/pipewire
|
||
|
||
../../modules/shell/xonsh
|
||
../../modules/network/browsers/librewolf
|
||
../../modules/network/syncthing
|
||
|
||
../../modules/login/greetd
|
||
];
|
||
|
||
nixpkgs.config.allowUnfree = true;
|
||
nix.settings = {
|
||
substituters = [ "https://hyprland.cachix.org" ];
|
||
trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ];
|
||
experimental-features = [ "nix-command" "flakes" ];
|
||
};
|
||
|
||
system.stateVersion = "23.05";
|
||
}
|