Compare commits

..

No commits in common. "41152a4c29ee5b9d3e2ac5f23d123a9975008546" and "fc51b84abdc160498db51661dff0b697fa4c406b" have entirely different histories.

10 changed files with 19 additions and 47 deletions

View File

@ -18,6 +18,6 @@
useGlobalPkgs = true; useGlobalPkgs = true;
useUserPackages = true; useUserPackages = true;
extraSpecialArgs = { inherit emacs-larstvei; }; extraSpecialArgs = { inherit emacs-larstvei; };
users.larstvei.imports = [ ../../modules/home/full ]; users.larstvei.imports = [ ../../modules/home ];
}; };
} }

View File

@ -6,11 +6,6 @@
../../modules/nixos ../../modules/nixos
]; ];
home-manager.users.larstvei.imports = [
../../modules/home/full
../../modules/desktop
];
networking.hostName = "larstvei-think"; networking.hostName = "larstvei-think";
# Bootloader. # Bootloader.

View File

@ -4,11 +4,6 @@
../../modules/nixos ../../modules/nixos
]; ];
home-manager.users.larstvei.imports = [
../../modules/home/minimal
../../modules/desktop
];
networking.hostName = "larstvei-vm"; networking.hostName = "larstvei-vm";
# VM-friendly bits # VM-friendly bits

View File

@ -1,12 +1,5 @@
{ pkgs, zen-browser, ... }: { pkgs, zen-browser, ... }:
{ {
services.greetd = {
enable = true;
settings.default_session = {
command = "hyprland";
user = "larstvei";
};
};
home.packages = [ home.packages = [
pkgs.adwaita-icon-theme pkgs.adwaita-icon-theme

View File

@ -1,4 +1,9 @@
{ {
imports = [
../languages
../tools
];
programs.home-manager.enable = true; programs.home-manager.enable = true;
home.stateVersion = "24.11"; home.stateVersion = "24.11";

View File

@ -1,7 +0,0 @@
{
imports = [
../.
../../languages
../../tools
];
}

View File

@ -1,13 +0,0 @@
{
imports = [
../.
../../languages/c
../../languages/clojure
../../languages/nix
../../languages/python
../../tools/editor
../../tools/git
../../tools/shell
../../tools/utils
];
}

View File

@ -1,8 +0,0 @@
{
imports = [
../.
../../tools/editor
../../tools/git
../../tools/shell
];
}

View File

@ -15,6 +15,10 @@
useGlobalPkgs = true; useGlobalPkgs = true;
useUserPackages = true; useUserPackages = true;
extraSpecialArgs = { inherit nanostatus emacs-larstvei zen-browser; }; extraSpecialArgs = { inherit nanostatus emacs-larstvei zen-browser; };
users.larstvei.imports = [
../home
../desktop
];
}; };
users.users.larstvei = { users.users.larstvei = {
@ -30,6 +34,14 @@
console.keyMap = "us"; console.keyMap = "us";
services.greetd = {
enable = true;
settings.default_session = {
command = "hyprland";
user = "larstvei";
};
};
fonts = { fonts = {
fontconfig = { fontconfig = {
enable = true; enable = true;

View File

@ -1,6 +1,6 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
zotero # zotero
]; ];
} }