Update configuration.nix

This commit is contained in:
batvin321 2024-06-02 23:10:45 -04:00
parent f2baca474d
commit a279371e56

View File

@ -1,6 +1,6 @@
# Edit this configuration file to define what should be installed on # Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page # your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help). # and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
@ -116,7 +116,7 @@ in
# Enable touchpad support (enabled default in most desktopManager). # Enable touchpad support (enabled default in most desktopManager).
services.libinput.enable = true; services.libinput.enable = true;
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.
nix.settings.allowed-users = [ "@wheel" ]; nix.settings.allowed-users = [ "@wheel" ];
users.users.vincent = { users.users.vincent = {
@ -308,7 +308,7 @@ in
networking.firewall.enable = true; networking.firewall.enable = true;
# This value determines the NixOS release from which the default settings for stateful data, like file locations and database versions on your system were # 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 this value at the release version of the first install of this system. Before changing this value read # taken. Its perfectly fine and recommended to leave this value at the release version of the first install of this system. Before changing this value read
# the documentation for this option (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). # the documentation for this option (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "24.05"; # Did you read the comment? system.stateVersion = "24.05"; # Did you read the comment?