moved nix/ folder to system/, moved user info from hosts/ to system

This commit is contained in:
Aly Raffauf 2024-03-01 21:38:19 -05:00
parent 3177a2d4ae
commit 69ae2f3e97
4 changed files with 9 additions and 20 deletions

View file

@ -25,7 +25,7 @@
system = "x86_64-linux";
modules = [
./hosts/rustboro
./nix
./system
./flatpak
./hardware
./network
@ -54,7 +54,7 @@
system = "x86_64-linux";
modules = [
./hosts/petalburg
./nix
./system
./flatpak
./hardware
./network

View file

@ -39,15 +39,6 @@
LC_TIME = "en_US.UTF-8";
};
# Define a user account. Don't forget to set a password with passwd.
users.users.aly = {
isNormalUser = true;
description = "Aly Raffauf";
extraGroups = [ "networkmanager" "wheel" "docker" ];
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave

View file

@ -39,15 +39,6 @@
LC_TIME = "en_US.UTF-8";
};
# Define a user account. Don't forget to set a password with passwd.
users.users.aly = {
isNormalUser = true;
description = "Aly Raffauf";
extraGroups = [ "networkmanager" "wheel" "docker" ];
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [

View file

@ -1,6 +1,13 @@
{ config, pkgs, ... }:
{
# Define a user account. Don't forget to set a password with passwd.
users.users.aly = {
isNormalUser = true;
description = "Aly Raffauf";
extraGroups = [ "networkmanager" "wheel" "docker" ];
};
# Allow unfree packages
nixpkgs.config.allowUnfree = true;