Compare commits
No commits in common. "2de770fe5c112ef47bbe8d062a6ad33626b5748c" and "c110948b58a3fe41b1b199587ebefa76eefc7945" have entirely different histories.
2de770fe5c
...
c110948b58
@ -8,11 +8,10 @@
|
||||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
nix.settings.extra-experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
imports = [
|
||||
./modules/networking.nix
|
||||
./modules/nix-settings.nix
|
||||
];
|
||||
imports = [ ./modules/networking.nix ];
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "America/Anchorage";
|
||||
@ -144,6 +143,8 @@
|
||||
systemd.services."getty@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:
|
||||
# $ nix search wget
|
||||
|
4
home.nix
4
home.nix
@ -50,6 +50,10 @@ with lib.hm.gvariant;
|
||||
# the Home Manager release notes for a list of state version
|
||||
# changes in each release.
|
||||
home.stateVersion = "23.05";
|
||||
# nix = {
|
||||
# package = pkgs.nix;
|
||||
# settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
# };
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager = {
|
||||
|
@ -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;
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user