Compare commits

..

No commits in common. "2de770fe5c112ef47bbe8d062a6ad33626b5748c" and "c110948b58a3fe41b1b199587ebefa76eefc7945" have entirely different histories.

3 changed files with 9 additions and 12 deletions

View File

@ -8,11 +8,10 @@
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.extra-experimental-features = [ "nix-command" "flakes" ];
imports = [ imports = [ ./modules/networking.nix ];
./modules/networking.nix
./modules/nix-settings.nix
];
# Set your time zone. # Set your time zone.
time.timeZone = "America/Anchorage"; time.timeZone = "America/Anchorage";
@ -144,6 +143,8 @@
systemd.services."getty@tty1".enable = false; systemd.services."getty@tty1".enable = false;
systemd.services."autovt@tty1".enable = false; systemd.services."autovt@tty1".enable = false;
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget

View File

@ -50,6 +50,10 @@ with lib.hm.gvariant;
# the Home Manager release notes for a list of state version # the Home Manager release notes for a list of state version
# changes in each release. # changes in each release.
home.stateVersion = "23.05"; home.stateVersion = "23.05";
# nix = {
# package = pkgs.nix;
# settings.experimental-features = [ "nix-command" "flakes" ];
# };
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
programs.home-manager = { programs.home-manager = {

View File

@ -1,8 +0,0 @@
{ config, lib, pkgs, ... }:
{
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.extra-experimental-features = [ "nix-command" "flakes" ];
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
}