mirror of
https://git.gay/sneexy/nixos.git
synced 2026-01-11 13:13:15 -08:00
remove home manager imports because it doesn't seem to work
This commit is contained in:
parent
7f04adbef2
commit
3dfbf67be9
3 changed files with 9 additions and 7 deletions
|
|
@ -1,6 +1,15 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
# Allow unfree packages
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
# auto optimize store and experimental features
|
||||||
|
nix.settings = {
|
||||||
|
experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
auto-optimise-store = true;
|
||||||
|
};
|
||||||
|
|
||||||
# Enable networking
|
# Enable networking
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,6 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# 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
|
||||||
#
|
#
|
||||||
|
|
|
||||||
|
|
@ -94,7 +94,6 @@
|
||||||
modules = with self.nixosModules; [
|
modules = with self.nixosModules; [
|
||||||
# nixos configuration file (and others) for thunkpad
|
# nixos configuration file (and others) for thunkpad
|
||||||
./machines/thunkpad
|
./machines/thunkpad
|
||||||
declarativeHome ./users/ruben
|
|
||||||
# fingerprint modules
|
# fingerprint modules
|
||||||
nixos-06cb-009a-fingerprint-sensor.nixosModules.open-fprintd
|
nixos-06cb-009a-fingerprint-sensor.nixosModules.open-fprintd
|
||||||
nixos-06cb-009a-fingerprint-sensor.nixosModules.python-validity
|
nixos-06cb-009a-fingerprint-sensor.nixosModules.python-validity
|
||||||
|
|
@ -106,7 +105,6 @@
|
||||||
modules = with self.nixosModules; [
|
modules = with self.nixosModules; [
|
||||||
# nixos configuration file (and others) for thonkpad
|
# nixos configuration file (and others) for thonkpad
|
||||||
./machines/thonkpad
|
./machines/thonkpad
|
||||||
declarativeHome ./users/ruben
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -121,7 +119,6 @@
|
||||||
extraSpecialArgs = {inherit inputs outputs;};
|
extraSpecialArgs = {inherit inputs outputs;};
|
||||||
modules = [
|
modules = [
|
||||||
./machines/thunkpad
|
./machines/thunkpad
|
||||||
declarativeHome ./users/ruben
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
# secondary device
|
# secondary device
|
||||||
|
|
@ -130,7 +127,6 @@
|
||||||
extraSpecialArgs = {inherit inputs outputs;};
|
extraSpecialArgs = {inherit inputs outputs;};
|
||||||
modules = [
|
modules = [
|
||||||
./machines/thonkpad
|
./machines/thonkpad
|
||||||
declarativeHome ./users/ruben
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue