Compare commits

...

2 commits

3 changed files with 6 additions and 2 deletions

BIN
assets/img/clownfish.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -65,7 +65,7 @@
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.users.cswimr = { home-manager.users.cswimr = {
imports = [ imports = [
./home-manager/home.nix ./home-manager/cswimr.nix
catppuccin.homeManagerModules.catppuccin catppuccin.homeManagerModules.catppuccin
{ {
catppuccin.enable = true; catppuccin.enable = true;

View file

@ -1,7 +1,11 @@
{ pkgs, ... }: { { pkgs, config, ... }: {
home.username = "cswimr"; home.username = "cswimr";
home.homeDirectory = "/home/cswimr"; home.homeDirectory = "/home/cswimr";
home.file = {
".face.icon".source = config.lib.file.mkOutOfStoreSymlink "/etc/nixos/assets/img/clownfish.png";
};
# link the configuration file in current directory to the specified location in home directory # link the configuration file in current directory to the specified location in home directory
# home.file.".config/i3/wallpaper.jpg".source = ./wallpaper.jpg; # home.file.".config/i3/wallpaper.jpg".source = ./wallpaper.jpg;