chore: Small cleanup

Not important lol

Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
Sid 2025-07-02 16:15:29 +02:00
parent 9f9ebb49c9
commit 63f075b6fc
Signed by: sidski
GPG key ID: D2BBDF3EDE6BA9A6
3 changed files with 23 additions and 13 deletions

View file

@ -12,13 +12,13 @@
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations = {
wano = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
modules = [
./hosts/wano/configuration.nix
inputs.home-manager.nixosModules.default
];
};
};
wano = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
modules = [
./hosts/wano/configuration.nix
inputs.home-manager.nixosModules.default
];
};
};
};
}

View file

@ -5,11 +5,10 @@
{ config, pkgs, inputs, ... }:
{
imports =
[
./hardware-configuration.nix
inputs.home-manager.nixosModules.default
];
imports = [
./hardware-configuration.nix
inputs.home-manager.nixosModules.default
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];

View file

@ -33,6 +33,17 @@
# shell provided by Home Manager. If you don't want to manage your shell
# through Home Manager then you have to manually source 'hm-session-vars.sh'
# located at either
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/sid/etc/profile.d/hm-session-vars.sh
#
home.sessionVariables = {
# EDITOR = "emacs";
};