Initial commit lol
This commit is contained in:
parent
a2318e586a
commit
0cc3e1fc29
15 changed files with 416 additions and 0 deletions
43
configuration.nix
Normal file
43
configuration.nix
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
# 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 =
|
||||
[
|
||||
# Hardware Settings (hardware scan)
|
||||
./hardware-configuration.nix
|
||||
|
||||
# System essentials (boot, lang, hostname, ...)
|
||||
./modules/system
|
||||
|
||||
./modules/user
|
||||
|
||||
./modules/themeing
|
||||
|
||||
./modules/audio/pipewire
|
||||
|
||||
./modules/shell/fish # This enables fish as the default shell
|
||||
|
||||
./modules/network/browsers/librewolf
|
||||
./modules/network/networking
|
||||
./modules/network/syncthing
|
||||
./modules/network/bluetooth
|
||||
|
||||
./modules/login/greetd
|
||||
|
||||
# ./modules/graphics/nvidia
|
||||
];
|
||||
|
||||
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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue