no need to mention this in the flake
This commit is contained in:
parent
02893b6035
commit
181afe262c
2 changed files with 7 additions and 12 deletions
13
flake.nix
13
flake.nix
|
|
@ -59,18 +59,7 @@
|
|||
nixosConfigurations = {
|
||||
tartarus = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
./hosts/tartarus/configuration.nix
|
||||
vscode-server.nixosModules.default
|
||||
agenix.nixosModules.default
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
environment.systemPackages = [
|
||||
agenix.packages.x86_64-linux.default
|
||||
osbm-nvim.packages.x86_64-linux.default
|
||||
];
|
||||
}
|
||||
];
|
||||
modules = [ ./hosts/tartarus/configuration.nix];
|
||||
};
|
||||
ymir = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
|
|
|
|||
|
|
@ -1,11 +1,15 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../../modules
|
||||
inputs.vscode-server.nixosModules.default
|
||||
inputs.agenix.nixosModules.default
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
];
|
||||
|
||||
myModules = {
|
||||
|
|
@ -51,6 +55,8 @@
|
|||
hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
inputs.agenix.packages.x86_64-linux.default
|
||||
inputs.osbm-nvim.packages.x86_64-linux.default
|
||||
];
|
||||
|
||||
system.stateVersion = "24.05"; # lalalalala
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue