Compare commits

...

2 Commits

Author SHA1 Message Date
k
0174e0f47a changed gnome look 2024-09-21 17:41:12 -04:00
k
aa44b4dbc8 update 2024-09-18 15:28:56 -04:00
4 changed files with 38 additions and 17 deletions

24
flake.lock generated
View File

@ -191,11 +191,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1725180166, "lastModified": 1726611255,
"narHash": "sha256-fzssXuGR/mCeGbzM1ExaTqDz7QDGta3WA4jJsZyRruo=", "narHash": "sha256-/bxaYvIK6/d3zqpW26QFS0rqfd0cO4qreSNWvYLTl/w=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "471e3eb0a114265bcd62d11d58ba8d3421ee68eb", "rev": "d2493de5cd1da06b6a4c3e97f4e7d5dd791df457",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -227,11 +227,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1725477728, "lastModified": 1726650330,
"narHash": "sha256-ahej1VRqKmWbG7gewty+GlrSBEeGY/J2Zy8Nt8+3fdg=", "narHash": "sha256-UbHzmaOQ18O/kCizipU70N0UQVFIfv8AiFKXw07oZ9Y=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "880be1ab837e1e9fe0449dae41ac4d034694d4ce", "rev": "abb448608a56a60075468e90d8acec2a7cb689b1",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -243,11 +243,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1725432240, "lastModified": 1726463316,
"narHash": "sha256-+yj+xgsfZaErbfYM3T+QvEE2hU7UuE+Jf0fJCJ8uPS0=", "narHash": "sha256-gI9kkaH0ZjakJOKrdjaI/VbaMEo9qBbSUl93DnU7f4c=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "ad416d066ca1222956472ab7d0555a6946746a80", "rev": "99dc8785f6a0adac95f5e2ab05cc2e1bf666d172",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -298,11 +298,11 @@
"systems": "systems" "systems": "systems"
}, },
"locked": { "locked": {
"lastModified": 1725290973, "lastModified": 1726497442,
"narHash": "sha256-+jwXF9KI0HfvDgpsoJGvOdfOGGSKOrID1wQB79zjUbo=", "narHash": "sha256-fieyqmLEJQqqnuJcg2CAnQ8kHapXHhg9rL48NNWjnPw=",
"owner": "danth", "owner": "danth",
"repo": "stylix", "repo": "stylix",
"rev": "ef81ad9e85e60420cc83d4642619c14b57139d33", "rev": "149b313ddf91c3cc94309170498b162cec666675",
"type": "github" "type": "github"
}, },
"original": { "original": {

25
hosts/home/gnome.nix Normal file
View File

@ -0,0 +1,25 @@
{ config, pkgs, inputs, ... }:
{
# ...
dconf.settings = {
# ...
"org/gnome/shell" = {
disable-user-extensions = false;
# `gnome-extensions list` for a list
enabled-extensions = [
"Vitals@CoreCoding.com"
"blur-my-shell@aunetx"
"search-light@icedman.github.com"
];
};
};
home.packages = with pkgs; [
gnomeExtensions.vitals
gnomeExtensions.blur-my-shell
gnomeExtensions.search-light
];
}

View File

@ -111,16 +111,11 @@
gnome-tour gnome-tour
xterm xterm
cheese # webcam tool cheese # webcam tool
gnome-music
gnome-weather
gnome-calendar
gnome-contacts gnome-contacts
gnome-clocks gnome-clocks
gnome-maps gnome-maps
epiphany # web browser
geary # email reader geary # email reader
evince # document viewer evince # document viewer
gnome-characters
totem # video player totem # video player
tali # poker game tali # poker game
iagno # go game iagno # go game

View File

@ -3,6 +3,7 @@
{ {
imports = [ imports = [
../home/home_common.nix ../home/home_common.nix
../home/gnome.nix
]; ];
stylix.enable = true; stylix.enable = true;