mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 15:51:54 -05:00
moved user and system modules to host files
This commit is contained in:
parent
9513777433
commit
d6c2be09f7
|
@ -22,10 +22,6 @@
|
||||||
# pkgs.libsForQt5.kwalletmanager
|
# pkgs.libsForQt5.kwalletmanager
|
||||||
];
|
];
|
||||||
|
|
||||||
services.flatpak.packages = [
|
|
||||||
"com.github.tchx84.Flatseal"
|
|
||||||
];
|
|
||||||
|
|
||||||
# Prefer baset set of gnome apps from Flatpaks.
|
# Prefer baset set of gnome apps from Flatpaks.
|
||||||
# environment.gnome.excludePackages = (with pkgs; [
|
# environment.gnome.excludePackages = (with pkgs; [
|
||||||
# baobab
|
# baobab
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
# Pre-baked hardware support for various devices.
|
# Pre-baked hardware support for various devices.
|
||||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||||
};
|
};<nixos-hardware/framework/13-inch/7040-amd>
|
||||||
|
|
||||||
outputs = inputs@{ nixpkgs, home-manager, nixpkgs-unstable, home-manager-unstable, nix-flatpak, nixos-hardware, ... }: {
|
outputs = inputs@{ nixpkgs, home-manager, nixpkgs-unstable, home-manager-unstable, nix-flatpak, nixos-hardware, ... }: {
|
||||||
|
|
||||||
|
@ -45,8 +45,6 @@
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/rustboro
|
./hosts/rustboro
|
||||||
./system
|
|
||||||
./users/aly
|
|
||||||
./desktop/kde
|
./desktop/kde
|
||||||
|
|
||||||
# Add managed flatpak module.
|
# Add managed flatpak module.
|
||||||
|
@ -69,8 +67,6 @@
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/petalburg
|
./hosts/petalburg
|
||||||
./system
|
|
||||||
./users/aly
|
|
||||||
./desktop/gnome
|
./desktop/gnome
|
||||||
|
|
||||||
# Add managed flatpak module.
|
# Add managed flatpak module.
|
||||||
|
@ -92,8 +88,6 @@
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/mauville
|
./hosts/mauville
|
||||||
./system
|
|
||||||
./users/aly
|
|
||||||
./desktop/gnome
|
./desktop/gnome
|
||||||
./modules/homelab
|
./modules/homelab
|
||||||
./modules/steam
|
./modules/steam
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
../../users/aly
|
||||||
|
../../system
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
../../users/aly
|
||||||
|
../../system
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
|
|
@ -43,6 +43,8 @@ in {
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
../../users/aly
|
||||||
|
../../system
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
../../users/aly
|
||||||
|
../../system
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
|
|
Loading…
Reference in a new issue