Remove currently unused configs
Just to make transition to flakes easier. We'll restore them later, maybe.
This commit is contained in:
parent
7506f55468
commit
25130195ec
|
@ -1,12 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
../hm
|
|
||||||
../curacao/options.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
home.username = "gnix";
|
|
||||||
home.homeDirectory = "/home/gnix";
|
|
||||||
|
|
||||||
frogeye.desktop.nixGLIntel = true;
|
|
||||||
}
|
|
|
@ -1,2 +0,0 @@
|
||||||
{ ... } @ args:
|
|
||||||
import ../dk/single_uefi_btrfs.nix (args // { id = "usb-Kingston_DataTraveler_3.0_E0D55EA57414F510489F0F1A-0:0"; name = "curacao_usb"; })
|
|
|
@ -1,22 +0,0 @@
|
||||||
{ pkgs, config, ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
../os
|
|
||||||
../curacao/options.nix
|
|
||||||
../curacao/hardware.nix
|
|
||||||
./dk.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
networking.hostName = "curacao_usb";
|
|
||||||
|
|
||||||
# It's a removable drive, so no touching EFI vars
|
|
||||||
# (quite a lot of stuff to set for that!)
|
|
||||||
boot.loader = {
|
|
||||||
efi.canTouchEfiVariables = false;
|
|
||||||
grub = {
|
|
||||||
efiInstallAsRemovable = true;
|
|
||||||
device = "nodev";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
# full profile
|
|
||||||
|
|
||||||
Fake configuration that contains everything I could ever need,
|
|
||||||
used for debugging.
|
|
||||||
Can't build a full system due to not having a filesystem / bootloader configuration,
|
|
||||||
build as a VM (without bootloader).
|
|
|
@ -1,17 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
frogeye = {
|
|
||||||
desktop.xorg = true;
|
|
||||||
dev = {
|
|
||||||
ansible = true;
|
|
||||||
c = true;
|
|
||||||
docker = true;
|
|
||||||
fpga = true;
|
|
||||||
perl = true;
|
|
||||||
php = true;
|
|
||||||
python = true;
|
|
||||||
};
|
|
||||||
extra = true;
|
|
||||||
gaming = true;
|
|
||||||
};
|
|
||||||
}
|
|
10
full/os.nix
10
full/os.nix
|
@ -1,10 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
../os
|
|
||||||
./options.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
# Create a different disk image depending on the architecture
|
|
||||||
networking.hostName = "${builtins.currentSystem}";
|
|
||||||
}
|
|
29
hm/flake.nix
Normal file
29
hm/flake.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
description = "Home Manager configuration of geoffrey";
|
||||||
|
|
||||||
|
inputs = {
|
||||||
|
# Specify the source of Home Manager and Nixpkgs.
|
||||||
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
|
home-manager = {
|
||||||
|
url = "github:nix-community/home-manager";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = { nixpkgs, home-manager, ... }:
|
||||||
|
let
|
||||||
|
system = "x86_64-linux";
|
||||||
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
|
in {
|
||||||
|
homeConfigurations."geoffrey" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit pkgs;
|
||||||
|
|
||||||
|
# Specify your home configuration modules here, for example,
|
||||||
|
# the path to your home.nix.
|
||||||
|
modules = [ ./. ];
|
||||||
|
|
||||||
|
# Optionally use extraSpecialArgs
|
||||||
|
# to pass through arguments to home.nix
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,2 +0,0 @@
|
||||||
{ ... } @ args:
|
|
||||||
import ../dk/single_uefi_btrfs.nix (args // { id = "mmc-SN32G_0xfb19ae99"; name = "pindakaas_sd"; })
|
|
|
@ -1,11 +0,0 @@
|
||||||
{ pkgs, config, ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
../os
|
|
||||||
../pindakaas/options.nix
|
|
||||||
../pindakaas/hardware.nix
|
|
||||||
./dk.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
networking.hostName = "pindakaas_sd";
|
|
||||||
}
|
|
Loading…
Reference in a new issue