update & fixes

This commit is contained in:
gpskwlkr 2024-03-26 23:55:25 +04:00
parent 709db1985b
commit f7e2c26626
7 changed files with 9 additions and 2 deletions

View file

@ -30,7 +30,7 @@
nixosConfigurations.nixos-personal = lib.nixosSystem {
inherit system;
modules = [
./configuration.nix
./system/configuration.nix
lanzaboote.nixosModules.lanzaboote
];
specialArgs = {

View file

@ -1,3 +1,4 @@
{ pkgs, ... }:
{
gtk = {
enable = true;

View file

@ -1,3 +1,5 @@
{ pkgs, pkgs-unstable, ... }:
{
nixpkgs = {
config = {

View file

@ -1,3 +1,4 @@
{ inputs, ... }:
{
programs.firefox = {
enable = true;

View file

@ -3,9 +3,10 @@
{
imports = [
./hardware-configuration.nix
./system/modules
./modules
];
system.stateVersion = "23.11";
}

View file

@ -3,6 +3,8 @@
{
documentation.nixos.enable = false;
nixpkgs.config.allowUnfree = true;
nix = {
settings = {
warn-dirty = false;