house keeping

This commit is contained in:
Andreas Zweili 2022-01-01 15:15:41 +01:00
parent ebcb87f115
commit e8a3a12437
6 changed files with 0 additions and 59 deletions

View File

@ -1,40 +0,0 @@
{ pkgs, ... }:
let
username = import ../username.nix;
in
{
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = username;
home.homeDirectory = "/home/${username}";
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
# home.stateVersion = import ../version.nix;
# Let Home Manager install and manage itself.
# programs.home-manager.enable = true;
home.packages = with pkgs; [
ansible
ansible-lint
];
programs.vim = {
enable = true;
settings = {
expandtab = true;
tabstop = 4;
shiftwidth = 4;
number = true;
relativenumber = true;
};
};
}

View File

@ -3,7 +3,6 @@
imports = [
./common
./work-desktop.nix
./software/ansible
./software/autorandr
./software/czkawka
./software/dunst

View File

@ -58,10 +58,6 @@
# Enable dconf to be able to save Nautilus settings
programs.dconf.enable = true;
environment.variables = {
ZWEILI_ENVIRONMENT = "desktop";
};
environment.systemPackages = with pkgs; [
# what I consider to be system packages
appimage-run

View File

@ -9,10 +9,5 @@
networking.hostName = "gwyn"; # Define your hostname.
virtualisation.virtualbox.host.enable = true;
environment.variables = {
ZWEILI_HARDWARE = "precision";
};
}

View File

@ -13,9 +13,5 @@
virtualisation.virtualbox.host.enable = true;
environment.variables = {
ZWEILI_HARDWARE = "asus";
};
}

View File

@ -12,10 +12,5 @@
hostName = "nixos-vm";
interfaces.enp0s3.useDHCP = true;
};
environment.variables = {
ZWEILI_HARDWARE = "vm";
};
}