Compare commits
2 commits
0a2af8503b
...
49b9745636
Author | SHA1 | Date | |
---|---|---|---|
49b9745636 | |||
abf2748ec3 |
3 changed files with 6 additions and 2 deletions
BIN
assets/img/clownfish.png
Normal file
BIN
assets/img/clownfish.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue